Browse Source

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
tags/v0.5
Reimar Döffinger 17 years ago
parent
commit
1bef65f4fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mp3.c

+ 1
- 1
libavformat/mp3.c View File

@@ -30,7 +30,7 @@

#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",
[1] = "Classic Rock",
[2] = "Country",


Loading…
Cancel
Save