diff options
author | Max Kellermann <max@duempel.org> | 2009-05-29 23:04:45 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-05-29 23:04:45 +0200 |
commit | a90c4e5184780179249ba941d801ec8402ee335b (patch) | |
tree | 34a3ab982e40628d37593c5d3c777b8edca55f8d | |
parent | 0dedfe7ddc77a789df9a2e465009dfbf2d5ef100 (diff) | |
download | mpd-a90c4e5184780179249ba941d801ec8402ee335b.tar.gz mpd-a90c4e5184780179249ba941d801ec8402ee335b.tar.xz mpd-a90c4e5184780179249ba941d801ec8402ee335b.zip |
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.
-rw-r--r-- | src/output_all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output_all.c b/src/output_all.c index 0cf0e924b..c6fb0f481 100644 --- a/src/output_all.c +++ b/src/output_all.c @@ -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 |