From: JP Dinger Date: Thu, 4 Jun 2009 14:01:36 +0000 (+0200) Subject: Compile fix for win32 vlc_timer_t: update callback fn prototype. X-Git-Tag: 1.1.0-ff~5597 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=84351fe3d080b272f96454141f34a06cd1713ff9;p=vlc Compile fix for win32 vlc_timer_t: update callback fn prototype. --- diff --git a/include/vlc_threads.h b/include/vlc_threads.h index 5f396af85e..41426289b3 100644 --- a/include/vlc_threads.h +++ b/include/vlc_threads.h @@ -148,7 +148,7 @@ typedef struct vlc_timer_t vlc_timer_t; struct vlc_timer_t { HANDLE handle; - void (*func) (vlc_timer_t *, void *); + void (*func) (void *); void *data; unsigned overrun; CRITICAL_SECTION serializer;