diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-11-21 11:07:04 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-11-21 11:07:04 +0000 |
commit | 0f46d685228293dd17ddf521271fe159a6ad4881 (patch) | |
tree | 591b31b8760ed71c32e8f243e827433e0d5aeed7 /libavformat/ipmovie.c | |
parent | 18d761a1b1e8a33b108ef69078c285b11942e00f (diff) | |
download | ffmpeg-0f46d685228293dd17ddf521271fe159a6ad4881.tar.gz |
Fix indentation.
Originally committed as revision 25781 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ipmovie.c')
-rw-r--r-- | libavformat/ipmovie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c index 372a926266..18077b5e65 100644 --- a/libavformat/ipmovie.c +++ b/libavformat/ipmovie.c @@ -271,7 +271,7 @@ static int process_ipmovie_chunk(IPMVEContext *s, ByteIOContext *pb, while ((chunk_size > 0) && (chunk_type != CHUNK_BAD)) { /* read the next chunk, wherever the file happens to be pointing */ - if (url_feof(pb)) { + if (url_feof(pb)) { chunk_type = CHUNK_EOF; break; } |