From 232877f26732861e5d0726c077f548a1e43463c2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 14 Jul 2013 13:25:49 -0400 Subject: [PATCH] Fixed compiler warning in testtimer.c --- test/testtimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testtimer.c b/test/testtimer.c index 87264b19d..e0d0c3e61 100644 --- a/test/testtimer.c +++ b/test/testtimer.c @@ -105,7 +105,7 @@ main(int argc, char *argv[]) now = SDL_GetPerformanceCounter(); printf("1 million iterations of ticktock took %f ms\n", (double)((now - start)*1000) / SDL_GetPerformanceFrequency()); - printf("Performance counter frequency: %lld\n", SDL_GetPerformanceFrequency()); + printf("Performance counter frequency: %llu\n", (unsigned long long) SDL_GetPerformanceFrequency()); start32 = SDL_GetTicks(); start = SDL_GetPerformanceCounter(); SDL_Delay(1000);