From 7b1312fa55d5f3d413319b53996efecc5b86d014 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Mon, 4 Jan 2010 22:59:43 +0000 Subject: cosmetics, remove useless parentheses, add space Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mov.c') 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; -- cgit v1.2.3