mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-17 18:28:28 +00:00
Fixed some issues found with static analysis
This commit is contained in:
parent
218e45247f
commit
b854e1fe0b
6 changed files with 41 additions and 14 deletions
|
@ -840,7 +840,7 @@ static void SDLTest_PrintWindowFlag(char *text, size_t maxlen, SDL_WindowFlags f
|
|||
SDL_snprintfcat(text, maxlen, "TRANSPARENT");
|
||||
break;
|
||||
default:
|
||||
SDL_snprintfcat(text, maxlen, "0x%8.8x", flag);
|
||||
SDL_snprintfcat(text, maxlen, "0x%16.16" SDL_PRIx64, flag);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue