diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 19:59:48 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 19:59:48 +0200 |
commit | 90f9b063862f51c7e192da786ad88e9b1287978c (patch) | |
tree | ac02c4c2e1f4dfbb68c6e0934d06ca4cb2818a2c /libavcodec/dvbsubdec.c | |
parent | a76a2ffe9d7773d59bb1bc228a6660e23672c490 (diff) | |
download | ffmpeg-90f9b063862f51c7e192da786ad88e9b1287978c.tar.gz |
dvbsubdec: Fix "set but not used" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvbsubdec.c')
-rw-r--r-- | libavcodec/dvbsubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index 6105aa3904..66e7b4878a 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec.c @@ -1031,7 +1031,7 @@ static void dvbsub_parse_region_segment(AVCodecContext *avctx, const uint8_t *buf_end = buf + buf_size; int region_id, object_id; - int version; + int av_unused version; DVBSubRegion *region; DVBSubObject *object; DVBSubObjectDisplay *display; |