summaryrefslogtreecommitdiff
path: root/libavformat/id3v1.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 08:39:41 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-06 08:39:41 +0000
commited034f6c595c188daacdb76abffb0bfd6d66ecb7 (patch)
tree80bd286ecd1c2ac2be3e882edf0602382a20ca2f /libavformat/id3v1.c
parent4d2a4dfd885942c5b4902a1addf3a90091e9245c (diff)
ff_id3v1_genre_str table should be const.
Originally committed as revision 19781 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/id3v1.c')
-rw-r--r--libavformat/id3v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c
index 7281974182..cf5cb950c9 100644
--- a/libavformat/id3v1.c
+++ b/libavformat/id3v1.c
@@ -22,7 +22,7 @@
#include "id3v1.h"
#include "libavcodec/avcodec.h"
-const char *ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
+const char * const ff_id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
[0] = "Blues",
[1] = "Classic Rock",
[2] = "Country",