diff options
author | Ryan C. Gordon <icculus@icculus.org> | 2013-07-14 13:25:49 -0400 |
---|---|---|
committer | Ryan C. Gordon <icculus@icculus.org> | 2013-07-14 13:25:49 -0400 |
commit | c88d5e0b606ced11e57245159d0bfa737580de2b (patch) | |
tree | 058bce56e6edb321105d01d0114d3a910ab0c517 /test | |
parent | f6250318c6e69a657da62df19a210714428da4c7 (diff) |
Fixed compiler warning in testtimer.c
Diffstat (limited to 'test')
-rw-r--r-- | test/testtimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testtimer.c b/test/testtimer.c index 87264b19d6..e0d0c3e61a 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); |