[MPlayer-cvslog] r30975 - trunk/libvo/vo_xvmc.c

diego subversion at mplayerhq.hu
Sun Mar 28 18:58:27 CEST 2010


Author: diego
Date: Sun Mar 28 18:58:27 2010
New Revision: 30975

Log:
Use (void) instead of () to indicate a parameterless function, fixes:
libvo/vo_xvmc.c:123: warning: function declaration isn't a prototype

Modified:
   trunk/libvo/vo_xvmc.c

Modified: trunk/libvo/vo_xvmc.c
==============================================================================
--- trunk/libvo/vo_xvmc.c	Sun Mar 28 18:49:23 2010	(r30974)
+++ trunk/libvo/vo_xvmc.c	Sun Mar 28 18:58:27 2010	(r30975)
@@ -120,7 +120,7 @@ static void   init_osd_yuv_pal(void);
 
 static const struct{
     int id;//id as xvimages or as mplayer RGB|{8,15,16,24,32}
-    void (* init_func_ptr)();
+    void (* init_func_ptr)(void);
     void (* draw_func_ptr)();
     void (* clear_func_ptr)();
     } osd_render[]={


More information about the MPlayer-cvslog mailing list