summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfcolin2010-11-22 12:21:04 +0000
committerfcolin2010-11-22 12:21:04 +0000
commit6deabe1a51d61be0a173c2afa667d9f984f7c488 (patch)
treeda3cf26a7edeb754c55899401a9c84744dc723b6 /src
parent066368cb42678efe90d63f0b87bcd26a3accfc4a (diff)
downloadivy-c-6deabe1a51d61be0a173c2afa667d9f984f7c488.zip
ivy-c-6deabe1a51d61be0a173c2afa667d9f984f7c488.tar.gz
ivy-c-6deabe1a51d61be0a173c2afa667d9f984f7c488.tar.bz2
ivy-c-6deabe1a51d61be0a173c2afa667d9f984f7c488.tar.xz
remove Warning on macos
Diffstat (limited to 'src')
-rw-r--r--src/timer.h4
1 files changed, 2 insertions, 2 deletions
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 );