Commit 1bef65f4 authored by Reimar Döffinger's avatar Reimar Döffinger

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

Originally committed as revision 14942 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dad6afb4
...@@ -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