diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-07-29 16:18:25 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-07-31 08:19:27 +0200 |
commit | 5ebef79abecc3ffcc4ab0d46e203d13b068107c9 (patch) | |
tree | 6f7809258292b833b9947497ea7341e3e098eb1a /libavformat | |
parent | 5ed4644d6de7f6112431dc2d9a5cfe9a0a75a688 (diff) | |
download | ffmpeg-5ebef79abecc3ffcc4ab0d46e203d13b068107c9.tar.gz |
Fix instances of broken indentation found by gcc 6
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mxfdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index ef82f0c6d1..449af95e7a 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2479,8 +2479,8 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt) if ((ret64 = avio_seek(s->pb, pos, SEEK_SET)) < 0) return ret64; - if ((ret = av_get_packet(s->pb, pkt, size)) != size) - return ret < 0 ? ret : AVERROR_EOF; + if ((ret = av_get_packet(s->pb, pkt, size)) != size) + return ret < 0 ? ret : AVERROR_EOF; pkt->stream_index = 0; |