summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-03-27 13:20:12 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-03-27 13:20:12 +0000
commit9ce84dd8b4dca869651b7fa7a08ba08b1014b760 (patch)
tree35bfb21909ecbc585ce77109161e535c60e68e44
parent6282c5f45b2ea1774d0f9c9d48788f95fc2c8615 (diff)
cosmetics, useless braces
Originally committed as revision 12606 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index f3ab3be637..774e57736e 100644
--- a/libavformat/mov.c
+++ b/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;
}