diff options
author | Max Kellermann <max@duempel.org> | 2014-02-06 20:52:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-06 20:52:25 +0100 |
commit | ad6b05ae1720fc7295bcc9fe7779df520d1988c1 (patch) | |
tree | 86fcea2452290a04e37756d985f152803da9cb36 | |
parent | 29b18d9ab7e98dddccc89614eec05b4716029e36 (diff) |
mixer/software: use IgnoreError()
-rw-r--r-- | src/mixer/plugins/SoftwareMixerPlugin.cxx | 4 |
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 { |