[Ffmpeg-cvslog] r7555 - trunk/libavcodec/eval.c

lu_zero subversion
Tue Jan 16 23:07:50 CET 2007


Author: lu_zero
Date: Tue Jan 16 23:07:49 2007
New Revision: 7555

Modified:
   trunk/libavcodec/eval.c

Log:
fix a gcc warning, avoid an unnecessary operation

Modified: trunk/libavcodec/eval.c
==============================================================================
--- trunk/libavcodec/eval.c	(original)
+++ trunk/libavcodec/eval.c	Tue Jan 16 23:07:49 2007
@@ -110,7 +110,7 @@
 
         if(*next=='B') {
             d*=8;
-            *next++;
+            next++;
         }
     }
     /* if requested, fill in tail with the position after the last parsed




More information about the ffmpeg-cvslog mailing list