aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/plugins
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-06 20:52:22 +0100
committerMax Kellermann <max@duempel.org>2014-02-06 20:52:25 +0100
commitad6b05ae1720fc7295bcc9fe7779df520d1988c1 (patch)
tree86fcea2452290a04e37756d985f152803da9cb36 /src/mixer/plugins
parent29b18d9ab7e98dddccc89614eec05b4716029e36 (diff)
downloadmpd-ad6b05ae1720fc7295bcc9fe7779df520d1988c1.tar.gz
mpd-ad6b05ae1720fc7295bcc9fe7779df520d1988c1.tar.xz
mpd-ad6b05ae1720fc7295bcc9fe7779df520d1988c1.zip
mixer/software: use IgnoreError()
Diffstat (limited to 'src/mixer/plugins')
-rw-r--r--src/mixer/plugins/SoftwareMixerPlugin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixer/plugins/SoftwareMixerPlugin.cxx b/src/mixer/plugins/SoftwareMixerPlugin.cxx
index 14b214c7f..ec7aa197b 100644
--- a/src/mixer/plugins/SoftwareMixerPlugin.cxx
+++ b/src/mixer/plugins/SoftwareMixerPlugin.cxx
@@ -34,8 +34,8 @@
static Filter *
CreateVolumeFilter()
{
- Error error;
- return filter_new(&volume_filter_plugin, config_param(), error);
+ return filter_new(&volume_filter_plugin, config_param(),
+ IgnoreError());
}
struct SoftwareMixer final : public Mixer {