From 4c1b96c30721f78d9251a8074d4d516c37e755b9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 1 Nov 2008 14:55:23 +0100 Subject: decoder: make the suffixes and mime_types arrays really const The strings were constant, but the pointers weren't. C syntax is somewhat tricky.. --- src/decoder/audiofile_plugin.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/decoder/audiofile_plugin.c') diff --git a/src/decoder/audiofile_plugin.c b/src/decoder/audiofile_plugin.c index 9cc87a101..51e1559ce 100644 --- a/src/decoder/audiofile_plugin.c +++ b/src/decoder/audiofile_plugin.c @@ -133,7 +133,9 @@ static struct tag *audiofileTagDup(const char *file) return ret; } -static const char *audiofileSuffixes[] = { "wav", "au", "aiff", "aif", NULL }; +static const char *const audiofileSuffixes[] = { + "wav", "au", "aiff", "aif", NULL +}; const struct decoder_plugin audiofilePlugin = { .name = "audiofile", -- cgit v1.2.3