From a02142a50ac8fd2d5f137aee8ab060341919bc7b Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Tue, 16 Jan 2007 22:07:49 +0000 Subject: [PATCH] fix a gcc warning, avoid an unnecessary operation Originally committed as revision 7555 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 961c8b5acc..6ec7069914 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -110,7 +110,7 @@ static double av_strtod(const char *name, char **tail) { if(*next=='B') { d*=8; - *next++; + next++; } } /* if requested, fill in tail with the position after the last parsed