diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 12:25:08 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 14:07:49 +0200 |
commit | 81c3224076da6ad727debc6bab8a5422f7322451 (patch) | |
tree | 1da1912caa6c7ff863f7affeafae22e9e6004e8f /src/OutputPlugin.cxx | |
parent | 7a1d466fb279659048e80e2853a7906c90d73235 (diff) | |
download | mpd-81c3224076da6ad727debc6bab8a5422f7322451.tar.gz mpd-81c3224076da6ad727debc6bab8a5422f7322451.tar.xz mpd-81c3224076da6ad727debc6bab8a5422f7322451.zip |
OutputPlugin: pass config_param reference
Diffstat (limited to '')
-rw-r--r-- | src/OutputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OutputPlugin.cxx b/src/OutputPlugin.cxx index 00901aad2..7ac97cab9 100644 --- a/src/OutputPlugin.cxx +++ b/src/OutputPlugin.cxx @@ -23,7 +23,7 @@ struct audio_output * ao_plugin_init(const struct audio_output_plugin *plugin, - const struct config_param *param, + const config_param ¶m, GError **error) { assert(plugin != NULL); |