Merge pull request #34989 from akien-mga/warning-crash-handler-x11-32

Fix warning in Linux crash handler on 32-bit
This commit is contained in:
Rémi Verschelde 2020-01-10 14:48:55 +01:00 committed by GitHub
commit 840c60a1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static void handle_crash(int sig) {
output.erase(output.length() - 1, 1);
}
fprintf(stderr, "[%ld] %s (%ls)\n", i, fname, output.c_str());
fprintf(stderr, "[%ld] %s (%ls)\n", (long int)i, fname, output.c_str());
}
free(strings);