# HG changeset patch # User reimar # Date 1200741941 0 # Node ID 7d2685c7d6880d9e29fa0c6da06f7552b3bebd90 # Parent dd97d332e041f995a08b44c8e701c48b29a5a80f Fix warning: vo_directfb2.c:553: warning: passing argument 2 of ¡Ædfb->EnumVideoModes¡Ç from incompatible pointer type diff -r dd97d332e041 -r 7d2685c7d688 libvo/vo_directfb2.c --- a/libvo/vo_directfb2.c Sat Jan 19 11:17:04 2008 +0000 +++ b/libvo/vo_directfb2.c Sat Jan 19 11:25:41 2008 +0000 @@ -447,7 +447,7 @@ } 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;