diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-01-04 22:59:43 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-01-04 22:59:43 +0000 |
commit | 7b1312fa55d5f3d413319b53996efecc5b86d014 (patch) | |
tree | 91e437e58381f52c168700f6974a175bbe11cb3c /libavformat/mov.c | |
parent | a510991cffb7230563d9b4f5b87c547462dae01e (diff) | |
download | ffmpeg-7b1312fa55d5f3d413319b53996efecc5b86d014.tar.gz |
cosmetics, remove useless parentheses, add space
Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 2b045bdcf5..f4151bd879 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -184,7 +184,7 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOVAtom atom) if (atom.size < 0) atom.size = INT64_MAX; - while(((total_size + 8) < atom.size) && !url_feof(pb)) { + while (total_size + 8 < atom.size && !url_feof(pb)) { int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL; a.size = atom.size; a.type=0; |