Fixed another printf() compiler warning, this time in the 1.3 branch.
This commit is contained in:
parent
5df7568eec
commit
cfa202c1f5
1 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue