From 0b614fbaae9089d6d1ce981735a51f2a5b3cbf65 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 1 Nov 2008 14:54:09 +0100 Subject: decoder: make all decoder_plugin structs const All decoder_plugin structs are initialized at compile time, and must never change. --- src/decoder/mp3_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder/mp3_plugin.c') diff --git a/src/decoder/mp3_plugin.c b/src/decoder/mp3_plugin.c index fe15568f1..1dc47b457 100644 --- a/src/decoder/mp3_plugin.c +++ b/src/decoder/mp3_plugin.c @@ -1146,7 +1146,7 @@ static struct tag *mp3_tag_dup(const char *file) static const char *mp3_suffixes[] = { "mp3", "mp2", NULL }; static const char *mp3_mime_types[] = { "audio/mpeg", NULL }; -struct decoder_plugin mp3Plugin = { +const struct decoder_plugin mp3Plugin = { .name = "mp3", .init = mp3_plugin_init, .stream_decode = mp3_decode, -- cgit v1.2.3