Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compiler warning in testtimer.c
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 14, 2013
1 parent d6f37e0 commit 232877f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testtimer.c
Expand Up @@ -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);
Expand Down

0 comments on commit 232877f

Please sign in to comment.