diff options
author | Max Kellermann <max@duempel.org> | 2011-08-24 00:14:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-08-24 01:47:26 +0200 |
commit | 350aa330220685721eaeb3f8e5ee669a5ef4d015 (patch) | |
tree | 2f710fcefb53f44ca1ec3be8774b270690cfb478 /src/mixer/raop_mixer_plugin.c | |
parent | d6290a2f1a27696f72e3ae599bdf8135e59be559 (diff) | |
download | mpd-350aa330220685721eaeb3f8e5ee669a5ef4d015.tar.gz mpd-350aa330220685721eaeb3f8e5ee669a5ef4d015.tar.xz mpd-350aa330220685721eaeb3f8e5ee669a5ef4d015.zip |
output/raop: consistently use GError
Diffstat (limited to 'src/mixer/raop_mixer_plugin.c')
-rw-r--r-- | src/mixer/raop_mixer_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixer/raop_mixer_plugin.c b/src/mixer/raop_mixer_plugin.c index 7ea156683..8173305bd 100644 --- a/src/mixer/raop_mixer_plugin.c +++ b/src/mixer/raop_mixer_plugin.c @@ -63,11 +63,11 @@ raop_mixer_get_volume(struct mixer *mixer, G_GNUC_UNUSED GError **error_r) } static bool -raop_mixer_set_volume(struct mixer *mixer, unsigned volume, G_GNUC_UNUSED GError **error_r) +raop_mixer_set_volume(struct mixer *mixer, unsigned volume, GError **error_r) { struct raop_mixer_plugin *rm = (struct raop_mixer_plugin *)mixer; g_debug("raop_mixer_set_volume\n"); - return raop_set_volume(rm->rd, volume); + return raop_set_volume(rm->rd, volume, error_r); } const struct mixer_plugin raop_mixer_plugin = { |