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/OutputInternal.hxx | |
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/OutputInternal.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OutputInternal.hxx b/src/OutputInternal.hxx index b23ec95b6..20e48279f 100644 --- a/src/OutputInternal.hxx +++ b/src/OutputInternal.hxx @@ -261,14 +261,14 @@ audio_output_command_is_finished(const struct audio_output *ao) } struct audio_output * -audio_output_new(const struct config_param *param, +audio_output_new(const config_param ¶m, struct player_control *pc, GError **error_r); bool ao_base_init(struct audio_output *ao, const struct audio_output_plugin *plugin, - const struct config_param *param, GError **error_r); + const config_param ¶m, GError **error_r); void ao_base_finish(struct audio_output *ao); |