[MPlayer-cvslog] r26180 - trunk/libmpcodecs/ve_vfw.c
    diego 
    subversion at mplayerhq.hu
       
    Thu Mar  6 09:43:20 CET 2008
    
    
  
Author: diego
Date: Thu Mar  6 09:43:20 2008
New Revision: 26180
Log:
Fix printf format string mismatch, eliminates the warning:
ve_vfw.c:252: warning: format '%d' expects type 'int', but argument 2 has type 'long int'
Modified:
   trunk/libmpcodecs/ve_vfw.c
Modified: trunk/libmpcodecs/ve_vfw.c
==============================================================================
--- trunk/libmpcodecs/ve_vfw.c	(original)
+++ trunk/libmpcodecs/ve_vfw.c	Thu Mar  6 09:43:20 2008
@@ -249,7 +249,7 @@ static int vfw_encode_frame(BITMAPINFOHE
 	NULL, keyframe, encoder_frameno, 0, quality,
 	biInput, encoder_buf);
 
-//    printf("ok. size=%d\n",biOutput->biSizeImage);
+//    printf("ok. size=%ld\n",biOutput->biSizeImage);
 
     memcpy(encoder_buf,Image,encoder_buf_size);
     ++encoder_frameno;
    
    
More information about the MPlayer-cvslog
mailing list