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.
This commit is contained in:
Max Kellermann 2009-05-29 23:04:45 +02:00
parent 0dedfe7ddc
commit a90c4e5184
1 changed files with 1 additions and 1 deletions

View File

@ -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