Commit cfa202c1 authored by Ryan C. Gordon's avatar Ryan C. Gordon

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

parent 5df7568e
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment