aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/audiofile_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-01 14:54:09 +0100
committerMax Kellermann <max@duempel.org>2008-11-01 14:54:09 +0100
commit0b614fbaae9089d6d1ce981735a51f2a5b3cbf65 (patch)
treebc1f7fc067f7f794b34dfed31083fd9eb13dcd19 /src/decoder/audiofile_plugin.c
parent1a4a3e1f1f09ade38095757952bbf732ec275fe8 (diff)
downloadmpd-0b614fbaae9089d6d1ce981735a51f2a5b3cbf65.tar.gz
mpd-0b614fbaae9089d6d1ce981735a51f2a5b3cbf65.tar.xz
mpd-0b614fbaae9089d6d1ce981735a51f2a5b3cbf65.zip
decoder: make all decoder_plugin structs const
All decoder_plugin structs are initialized at compile time, and must never change.
Diffstat (limited to '')
-rw-r--r--src/decoder/audiofile_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/audiofile_plugin.c b/src/decoder/audiofile_plugin.c
index 8f493d1ed..9cc87a101 100644
--- a/src/decoder/audiofile_plugin.c
+++ b/src/decoder/audiofile_plugin.c
@@ -135,7 +135,7 @@ static struct tag *audiofileTagDup(const char *file)
static const char *audiofileSuffixes[] = { "wav", "au", "aiff", "aif", NULL };
-struct decoder_plugin audiofilePlugin = {
+const struct decoder_plugin audiofilePlugin = {
.name = "audiofile",
.file_decode = audiofile_decode,
.tag_dup = audiofileTagDup,