diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-27 13:20:12 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-27 13:20:12 +0000 |
commit | 9ce84dd8b4dca869651b7fa7a08ba08b1014b760 (patch) | |
tree | 35bfb21909ecbc585ce77109161e535c60e68e44 /libavformat/mov.c | |
parent | 6282c5f45b2ea1774d0f9c9d48788f95fc2c8615 (diff) | |
download | ffmpeg-9ce84dd8b4dca869651b7fa7a08ba08b1014b760.tar.gz |
cosmetics, useless braces
Originally committed as revision 12606 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 3 |
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; } |