Commit 7b1312fa authored by Baptiste Coudurier's avatar Baptiste Coudurier

cosmetics, remove useless parentheses, add space

Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a510991c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment