diff options
-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 d2e53a23..10894d79 100644 --- a/test/testtimer.c +++ b/test/testtimer.c @@ -27,7 +27,7 @@ static Uint32 ticktock(Uint32 interval) static Uint32 callback(Uint32 interval, void *param) { - printf("Timer %d : param = %d\n", interval, (int) param); + printf("Timer %d : param = %d\n", interval, (uintptr_t)param); return interval; } |