aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_shout.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-08 11:43:38 +0200
committerMax Kellermann <max@duempel.org>2008-09-08 11:43:38 +0200
commit3f6fe915ebff003b907bc0c70502d21691b50095 (patch)
tree1d144aa6605ce6a4efb59fc2d724d0c8fe919a2c /src/audioOutputs/audioOutput_shout.c
parentbe046b25a4e2583f63d6b3da680e6451957750e4 (diff)
downloadmpd-3f6fe915ebff003b907bc0c70502d21691b50095.tar.gz
mpd-3f6fe915ebff003b907bc0c70502d21691b50095.tar.xz
mpd-3f6fe915ebff003b907bc0c70502d21691b50095.zip
output: const plugin structures
Since the plugin struct is never modified, we should store it in constant locations.
Diffstat (limited to 'src/audioOutputs/audioOutput_shout.c')
-rw-r--r--src/audioOutputs/audioOutput_shout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c
index ee21fabe6..6c5e3c56b 100644
--- a/src/audioOutputs/audioOutput_shout.c
+++ b/src/audioOutputs/audioOutput_shout.c
@@ -680,7 +680,7 @@ static void myShout_setTag(struct audio_output *audioOutput,
sd->tagToSend = 1;
}
-struct audio_output_plugin shoutPlugin = {
+const struct audio_output_plugin shoutPlugin = {
"shout",
NULL,
myShout_initDriver,