Skip to content

Commit

Permalink
Add spaces around SDL_PRI??? to avoid potential compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Jan 18, 2024
1 parent 2487900 commit c47680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ main(int argc, char *argv[])
}
else if (SDL_strcasecmp(argv[i], "--execKey") == 0) {
if (argv[i + 1]) {
SDL_sscanf(argv[i + 1], "%"SDL_PRIu64, &userExecKey);
SDL_sscanf(argv[i + 1], "%" SDL_PRIu64, &userExecKey);
consumed = 2;
}
}
Expand Down

0 comments on commit c47680c

Please sign in to comment.