[MPlayer-cvslog] r25792 - trunk/libvo/vo_directfb2.c
reimar
subversion at mplayerhq.hu
Sat Jan 19 12:25:41 CET 2008
Author: reimar
Date: Sat Jan 19 12:25:41 2008
New Revision: 25792
Log:
Fix warning:
vo_directfb2.c:553: warning: passing argument 2 of ‘dfb->EnumVideoModes’ from incompatible pointer type
Modified:
trunk/libvo/vo_directfb2.c
Modified: trunk/libvo/vo_directfb2.c
==============================================================================
--- trunk/libvo/vo_directfb2.c (original)
+++ trunk/libvo/vo_directfb2.c Sat Jan 19 12:25:41 2008
@@ -447,7 +447,7 @@ int bpp;
} videomode_t;
-DFBEnumerationResult video_modes_callback( unsigned int width,unsigned int height,unsigned int bpp, void *data)
+DFBEnumerationResult video_modes_callback( int width,int height,int bpp, void *data)
{
videomode_t *params =(videomode_t *)data;
More information about the MPlayer-cvslog
mailing list