diff options
Diffstat (limited to 'src/decoder/mp3_plugin.c')
-rw-r--r-- | src/decoder/mp3_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/mp3_plugin.c b/src/decoder/mp3_plugin.c index 1dc47b457..528911f3d 100644 --- a/src/decoder/mp3_plugin.c +++ b/src/decoder/mp3_plugin.c @@ -1143,8 +1143,8 @@ static struct tag *mp3_tag_dup(const char *file) return ret; } -static const char *mp3_suffixes[] = { "mp3", "mp2", NULL }; -static const char *mp3_mime_types[] = { "audio/mpeg", NULL }; +static const char *const mp3_suffixes[] = { "mp3", "mp2", NULL }; +static const char *const mp3_mime_types[] = { "audio/mpeg", NULL }; const struct decoder_plugin mp3Plugin = { .name = "mp3", |