summaryrefslogtreecommitdiff
path: root/libavformat/vocdec.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 16:51:50 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-08-24 16:51:50 +0000
commitc18545929e134845ff57e3e98f494965e42ab10a (patch)
treece6ec00e44d95488780922523fe6c6276536b967 /libavformat/vocdec.c
parentf23a9759cee8442b02195a4539f65d041104c9cb (diff)
Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/vocdec.c')
-rw-r--r--libavformat/vocdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vocdec.c b/libavformat/vocdec.c
index afba3c56b1..178ecb5ac6 100644
--- a/libavformat/vocdec.c
+++ b/libavformat/vocdec.c
@@ -141,5 +141,5 @@ AVInputFormat voc_demuxer = {
voc_probe,
voc_read_header,
voc_read_packet,
- .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0},
+ .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0},
};