aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_null.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_null.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 '')
-rw-r--r--src/audioOutputs/audioOutput_null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutputs/audioOutput_null.c b/src/audioOutputs/audioOutput_null.c
index eea1cfcbe..28e58d49e 100644
--- a/src/audioOutputs/audioOutput_null.c
+++ b/src/audioOutputs/audioOutput_null.c
@@ -63,7 +63,7 @@ static void null_dropBufferedAudio(struct audio_output *audioOutput)
timer_reset(audioOutput->data);
}
-struct audio_output_plugin nullPlugin = {
+const struct audio_output_plugin nullPlugin = {
"null",
NULL,
null_initDriver,