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; }