diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-03 21:02:18 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-03 21:39:07 +0100 |
commit | add41decd94b2d3581a3715ba10f27168b8cdb1b (patch) | |
tree | 75b99269199b63d99c9cfa92e876cf4682bf44b5 /libavformat/bethsoftvid.c | |
parent | f75e3da535f297ddbe501ce866e57ccca7645455 (diff) | |
download | ffmpeg-add41decd94b2d3581a3715ba10f27168b8cdb1b.tar.gz |
Remove return statements following infinite loops without break
These statements cannot be reached and are thus not needed.
This removes a number of compiler warnings.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/bethsoftvid.c')
-rw-r--r-- | libavformat/bethsoftvid.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/bethsoftvid.c b/libavformat/bethsoftvid.c index 01e6f55cd4..5e6a776824 100644 --- a/libavformat/bethsoftvid.c +++ b/libavformat/bethsoftvid.c @@ -220,8 +220,6 @@ static int vid_read_packet(AVFormatContext *s, av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n", block_type, block_type, block_type); return -1; } - - return 0; } AVInputFormat ff_bethsoftvid_demuxer = { |