summaryrefslogtreecommitdiff
path: root/libavcodec/flicvideo.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-03 02:37:03 +0100
committerMans Rullgard <mans@mansr.com>2011-07-03 03:15:53 +0100
commitb27565b1432f8bb2c933afa184ace6582ad650ee (patch)
treed19025a322659176b11102caf537e81cec1398b7 /libavcodec/flicvideo.c
parent050f2b3e7f3a98bc824cfcaf4c825ed4c643e21c (diff)
Remove statements immediately following unconditional jumps
This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r--libavcodec/flicvideo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c
index ed9972c018..e8c0e14386 100644
--- a/libavcodec/flicvideo.c
+++ b/libavcodec/flicvideo.c
@@ -112,7 +112,6 @@ static av_cold int flic_decode_init(AVCodecContext *avctx)
case 24 : avctx->pix_fmt = PIX_FMT_BGR24; /* Supposedly BGR, but havent any files to test with */
av_log(avctx, AV_LOG_ERROR, "24Bpp FLC/FLX is unsupported due to no test files.\n");
return -1;
- break;
default :
av_log(avctx, AV_LOG_ERROR, "Unknown FLC/FLX depth of %d Bpp is unsupported.\n",depth);
return -1;