output/Internal: simplify "return" statements in IteratePause()

This commit is contained in:
Max Kellermann 2017-08-07 17:40:13 +02:00
parent 5990017d51
commit 8f42ba13ef

View File

@ -127,16 +127,12 @@ AudioOutput::BeginPause() noexcept
bool
AudioOutput::IteratePause() noexcept
{
bool success;
try {
const ScopeUnlock unlock(mutex);
success = ao_plugin_pause(*this);
return ao_plugin_pause(*this);
} catch (const std::runtime_error &e) {
FormatError(e, "\"%s\" [%s] failed to pause",
name, plugin.name);
success = false;
return false;
}
return success;
}