Fixed another printf() compiler warning, this time in the 1.3 branch.

This commit is contained in:
Ryan C. Gordon 2011-08-23 03:12:27 -04:00
parent 5df7568eec
commit cfa202c1f5

View file

@ -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) {