Commit a90c4e51 authored by Max Kellermann's avatar Max Kellermann

output_all: explicitly return "true" from audio_output_all_play()

Instead of returning the local variable "ret" which is always true at this point, hard-code the "true" return value, because that might be more readable.
parent 0dedfe7d
......@@ -240,7 +240,7 @@ audio_output_all_play(struct music_chunk *chunk)
if (audio_output_is_open(&audio_outputs[i]))
audio_output_play(&audio_outputs[i]);
return ret;
return true;
}
bool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment