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 e9d9c85e3c
commit f39c6e8a6f
9 changed files with 130 additions and 122 deletions

View file

@ -92,11 +92,7 @@ int platform_testEndianessAndSwap(void *arg)
/* Test 64 swap. */
SDLTest_AssertCheck( SDL_Swap64(value64) == swapped64,
#ifdef _MSC_VER
"SDL_Swap64(): 64 bit swapped: 0x%I64X => 0x%I64X",
#else
"SDL_Swap64(): 64 bit swapped: 0x%llX => 0x%llX",
#endif
"SDL_Swap64(): 64 bit swapped: 0x%"SDL_PRIX64" => 0x%"SDL_PRIX64,
value64, SDL_Swap64(value64) );
return TEST_COMPLETED;