[Ffmpeg-cvslog] CVS: ffmpeg/libavutil common.h,1.153,1.154
    Alexander Strasser beastd 
    al
       
    Thu Dec  1 19:20:17 CET 2005
    
    
  
Update of /cvsroot/ffmpeg/ffmpeg/libavutil
In directory mail:/var2/tmp/cvs-serv2042/libavutil
Modified Files:
	common.h 
Log Message:
Fixed format specifier in STOP_TIMER macro.
Index: common.h
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavutil/common.h,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -d -r1.153 -r1.154
--- common.h	19 Sep 2005 23:26:47 -0000	1.153
+++ common.h	1 Dec 2005 18:20:15 -0000	1.154
@@ -512,7 +512,7 @@
   }else\
       tskip_count++;\
   if(256*256*256*64%(tcount+tskip_count)==0){\
-      av_log(NULL, AV_LOG_DEBUG, "%Ld dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\
+      av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\
   }\
 }
 #else
    
    
More information about the ffmpeg-cvslog
mailing list