aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/mod_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-01 14:55:23 +0100
committerMax Kellermann <max@duempel.org>2008-11-01 14:55:23 +0100
commit4c1b96c30721f78d9251a8074d4d516c37e755b9 (patch)
treec1473bea5ff2fb12560c22a2764189adba96b83b /src/decoder/mod_plugin.c
parent0b614fbaae9089d6d1ce981735a51f2a5b3cbf65 (diff)
downloadmpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.tar.gz
mpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.tar.xz
mpd-4c1b96c30721f78d9251a8074d4d516c37e755b9.zip
decoder: make the suffixes and mime_types arrays really const
The strings were constant, but the pointers weren't. C syntax is somewhat tricky..
Diffstat (limited to 'src/decoder/mod_plugin.c')
-rw-r--r--src/decoder/mod_plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decoder/mod_plugin.c b/src/decoder/mod_plugin.c
index ad6f390a4..d927f0da4 100644
--- a/src/decoder/mod_plugin.c
+++ b/src/decoder/mod_plugin.c
@@ -263,7 +263,8 @@ static struct tag *modTagDup(const char *file)
return ret;
}
-static const char *modSuffixes[] = { "amf",
+static const char *const modSuffixes[] = {
+ "amf",
"dsm",
"far",
"gdm",