From 6d71e4e6c3db1b936112a54679976ddc61d8063f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 11 Feb 2015 12:54:35 +0000 Subject: [PATCH] Fix one more warning on windows --- library/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/timing.c b/library/timing.c index 913cbdce6..5791ef421 100644 --- a/library/timing.c +++ b/library/timing.c @@ -254,7 +254,7 @@ unsigned long get_timer( struct hr_time *val, int reset ) /* It's OK to use a global because alarm() is supposed to be global anyway */ static DWORD alarmMs; -DWORD WINAPI TimerProc( LPVOID TimerContext ) +static DWORD WINAPI TimerProc( LPVOID TimerContext ) { ((void) TimerContext); Sleep( alarmMs );