switch to use SDL_PRI* macros for long long formatting everywhere.

This commit is contained in:
Edward Rudd 2014-12-03 12:23:17 -05:00
parent 7810d19812
commit 73daadb74e
9 changed files with 130 additions and 122 deletions

View file

@ -62,7 +62,7 @@ main(int argc, char *argv[])
}
else if (SDL_strcasecmp(argv[i], "--execKey") == 0) {
if (argv[i + 1]) {
SDL_sscanf(argv[i + 1], "%llu", (long long unsigned int *)&userExecKey);
SDL_sscanf(argv[i + 1], "%"SDL_PRIu64, (long long unsigned int *)&userExecKey);
consumed = 2;
}
}