]> git.sesse.net Git - vlc/commitdiff
Compile fix for win32 vlc_timer_t: update callback fn prototype.
authorJP Dinger <jpd@videolan.org>
Thu, 4 Jun 2009 14:01:36 +0000 (16:01 +0200)
committerJP Dinger <jpd@videolan.org>
Thu, 4 Jun 2009 14:03:07 +0000 (16:03 +0200)
include/vlc_threads.h

index 5f396af85e692753b1f001f0d31e7dbcb61ad5d3..41426289b33da6bf1b6cdaa57b4a9c248b24f773 100644 (file)
@@ -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;