diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 13:43:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 14:07:50 +0200 |
commit | a0beb5fa26e2b66d01a3b21534b848930929a333 (patch) | |
tree | eb6e661a05b5d9994f514a6fbcc50a72d94df722 /src/MixerPlugin.hxx | |
parent | f54bcc1f16f815fb507ac8a8ffd7913f686969d2 (diff) | |
download | mpd-a0beb5fa26e2b66d01a3b21534b848930929a333.tar.gz mpd-a0beb5fa26e2b66d01a3b21534b848930929a333.tar.xz mpd-a0beb5fa26e2b66d01a3b21534b848930929a333.zip |
MixerPlugin: pass config_param reference
Diffstat (limited to '')
-rw-r--r-- | src/MixerPlugin.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/MixerPlugin.hxx b/src/MixerPlugin.hxx index a43c34fc4..e80ae094e 100644 --- a/src/MixerPlugin.hxx +++ b/src/MixerPlugin.hxx @@ -37,13 +37,12 @@ struct mixer_plugin { * Alocates and configures a mixer device. * * @param ao the pointer returned by audio_output_plugin.init - * @param param the configuration section, or NULL if there is - * no configuration + * @param param the configuration section * @param error_r location to store the error occurring, or * NULL to ignore errors * @return a mixer object, or NULL on error */ - Mixer *(*init)(void *ao, const struct config_param *param, + Mixer *(*init)(void *ao, const config_param ¶m, GError **error_r); /** |