[MPlayer-cvslog] r24366 - trunk/stream/tvi_v4l2.c

voroshil subversion at mplayerhq.hu
Sat Sep 8 12:15:08 CEST 2007


Author: voroshil
Date: Sat Sep  8 12:15:08 2007
New Revision: 24366

Log:
Fix for:
tvi_v4l2.c: In function 'start':
tvi_v4l2.c:1453: warning: comparison between signed and unsigned


Modified:
   trunk/stream/tvi_v4l2.c

Modified: trunk/stream/tvi_v4l2.c
==============================================================================
--- trunk/stream/tvi_v4l2.c	(original)
+++ trunk/stream/tvi_v4l2.c	Sat Sep  8 12:15:08 2007
@@ -1341,7 +1341,7 @@ static int get_capture_buffer_size(priv_
 static int start(priv_t *priv)
 {
     struct v4l2_requestbuffers request;
-    int i;
+    unsigned int i;
 
     /* setup audio parameters */
 



More information about the MPlayer-cvslog mailing list