From 84351fe3d080b272f96454141f34a06cd1713ff9 Mon Sep 17 00:00:00 2001 From: JP Dinger Date: Thu, 4 Jun 2009 16:01:36 +0200 Subject: [PATCH] Compile fix for win32 vlc_timer_t: update callback fn prototype. --- include/vlc_threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2