From 6deabe1a51d61be0a173c2afa667d9f984f7c488 Mon Sep 17 00:00:00 2001 From: fcolin Date: Mon, 22 Nov 2010 12:21:04 +0000 Subject: remove Warning on macos --- src/timer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/timer.h b/src/timer.h index fb80841..6e31dd7 100644 --- a/src/timer.h +++ b/src/timer.h @@ -28,9 +28,9 @@ typedef void (*TimerCb)( TimerId id , void *user_data, unsigned long delta ); /* API le temps est en millisecondes */ #define TIMER_LOOP -1 /* timer en boucle infinie */ -TimerId TimerRepeatAfter( int count, long time, TimerCb cb, void *user_data ); +TimerId TimerRepeatAfter( int count, long timeout, TimerCb cb, void *user_data ); -void TimerModify( TimerId id, long time ); +void TimerModify( TimerId id, long timeout ); void TimerRemove( TimerId id ); -- cgit v1.1