mirror of
https://github.com/yawut/SDL.git
synced 2026-06-03 06:35:10 -05:00
Fixed another printf() compiler warning, this time in the 1.3 branch.
This commit is contained in:
parent
27c0f06736
commit
d4f80d6538
|
|
@ -123,8 +123,9 @@ TestEndian(SDL_bool verbose)
|
|||
printf("Value 64 = 0x%I64X, swapped = 0x%I64X\n", value64,
|
||||
SDL_Swap64(value64));
|
||||
#else
|
||||
printf("Value 64 = 0x%llX, swapped = 0x%llX\n", value64,
|
||||
SDL_Swap64(value64));
|
||||
printf("Value 64 = 0x%llX, swapped = 0x%llX\n",
|
||||
(unsigned long long) value64,
|
||||
(unsigned long long) SDL_Swap64(value64));
|
||||
#endif
|
||||
}
|
||||
if (SDL_Swap64(value64) != swapped64) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user