Commit 07fa0171 authored by reimar's avatar reimar

Make the id3v1_genre_str array const, not just the strings it points to.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14942 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b04cb118
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#define ID3v1_GENRE_MAX 125 #define ID3v1_GENRE_MAX 125
static const char *id3v1_genre_str[ID3v1_GENRE_MAX + 1] = { static const char * const id3v1_genre_str[ID3v1_GENRE_MAX + 1] = {
[0] = "Blues", [0] = "Blues",
[1] = "Classic Rock", [1] = "Classic Rock",
[2] = "Country", [2] = "Country",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment