OSDN Git Service

cosmetics, useless braces
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Thu, 27 Mar 2008 13:20:12 +0000 (13:20 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Thu, 27 Mar 2008 13:20:12 +0000 (13:20 +0000)
Originally committed as revision 12606 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mov.c

index f3ab3be..774e577 100644 (file)
@@ -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;
 }