cosmetics, useless braces

Originally committed as revision 12606 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Baptiste Coudurier 17 years ago
parent 6282c5f45b
commit 9ce84dd8b4
  1. 3
      libavformat/mov.c

@ -223,9 +223,8 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
total_size += a.size;
}
if (!err && total_size < atom.size && atom.size < 0x7ffff) {
if (!err && total_size < atom.size && atom.size < 0x7ffff)
url_fskip(pb, atom.size - total_size);
}
return err;
}

Loading…
Cancel
Save