[SCM] libav/experimental: fix a gcc warning, avoid an unnecessary operation
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:55:05 UTC 2013
The following commit has been merged in the experimental branch:
commit a02142a50ac8fd2d5f137aee8ab060341919bc7b
Author: Luca Barbato <lu_zero at gentoo.org>
Date: Tue Jan 16 22:07:49 2007 +0000
fix a gcc warning, avoid an unnecessary operation
Originally committed as revision 7555 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/eval.c b/libavcodec/eval.c
index 961c8b5..6ec7069 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
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list