aboutsummaryrefslogtreecommitdiff
path: root/src/mixer
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-08-24 00:14:12 +0200
committerMax Kellermann <max@duempel.org>2011-08-24 01:47:26 +0200
commit350aa330220685721eaeb3f8e5ee669a5ef4d015 (patch)
tree2f710fcefb53f44ca1ec3be8774b270690cfb478 /src/mixer
parentd6290a2f1a27696f72e3ae599bdf8135e59be559 (diff)
output/raop: consistently use GError
Diffstat (limited to 'src/mixer')
-rw-r--r--src/mixer/raop_mixer_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixer/raop_mixer_plugin.c b/src/mixer/raop_mixer_plugin.c
index 7ea15668..8173305b 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 = {