diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2007-01-16 22:07:49 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2007-01-16 22:07:49 +0000 |
commit | a02142a50ac8fd2d5f137aee8ab060341919bc7b (patch) | |
tree | 9c5ded53273c618daa73b0e3d30c4beca04df8be /libavcodec/eval.c | |
parent | 97f6d1545e03cf71a0950f3893473335299bb2c3 (diff) | |
download | ffmpeg-a02142a50ac8fd2d5f137aee8ab060341919bc7b.tar.gz |
fix a gcc warning, avoid an unnecessary operation
Originally committed as revision 7555 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.c')
-rw-r--r-- | libavcodec/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |