mirror of
https://github.com/libsdl-org/SDL.git
synced 2024-11-30 23:33:42 +08:00
Fixed error: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'unsigned int'
This commit is contained in:
parent
e90060d07f
commit
e290e99d89
@ -742,7 +742,7 @@ static int video_getWindowPixelFormat(void *arg)
|
||||
/* Get format */
|
||||
format = SDL_GetWindowPixelFormat(window);
|
||||
SDLTest_AssertPass("Call to SDL_GetWindowPixelFormat()");
|
||||
SDLTest_AssertCheck(format != SDL_PIXELFORMAT_UNKNOWN, "Verify that returned format is valid; expected: != %d, got: %" SDL_PRIu32, SDL_PIXELFORMAT_UNKNOWN, format);
|
||||
SDLTest_AssertCheck(format != SDL_PIXELFORMAT_UNKNOWN, "Verify that returned format is valid; expected: != SDL_PIXELFORMAT_UNKNOWN, got: SDL_PIXELFORMAT_UNKNOWN");
|
||||
|
||||
/* Clean up */
|
||||
destroyVideoSuiteTestWindow(window);
|
||||
|
Loading…
Reference in New Issue
Block a user