diff options
author | Max Kellermann <max@duempel.org> | 2012-06-12 20:30:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-12 20:30:55 +0200 |
commit | ed915fed9253c23755fda6cc48ece61fa8f5d3b0 (patch) | |
tree | e3a07c506b0217b653bb187bf640616328d9c07c /src/output_list.c | |
parent | 8aa29d5a66e127b4b14ef439d77250051ccddea0 (diff) | |
download | mpd-ed915fed9253c23755fda6cc48ece61fa8f5d3b0.tar.gz mpd-ed915fed9253c23755fda6cc48ece61fa8f5d3b0.tar.xz mpd-ed915fed9253c23755fda6cc48ece61fa8f5d3b0.zip |
output_list: make the list truly "const"
Diffstat (limited to 'src/output_list.c')
-rw-r--r-- | src/output_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_list.c b/src/output_list.c index bc5e7d749..07f2fa555 100644 --- a/src/output_list.c +++ b/src/output_list.c @@ -39,7 +39,7 @@ extern const struct audio_output_plugin recorder_output_plugin; extern const struct audio_output_plugin winmm_output_plugin; extern const struct audio_output_plugin ffado_output_plugin; -const struct audio_output_plugin *audio_output_plugins[] = { +const struct audio_output_plugin *const audio_output_plugins[] = { #ifdef HAVE_SHOUT &shoutPlugin, #endif |