aboutsummaryrefslogtreecommitdiffstats
path: root/src/output_all.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-05-29 23:04:45 +0200
committerMax Kellermann <max@duempel.org>2009-05-29 23:04:45 +0200
commita90c4e5184780179249ba941d801ec8402ee335b (patch)
tree34a3ab982e40628d37593c5d3c777b8edca55f8d /src/output_all.c
parent0dedfe7ddc77a789df9a2e465009dfbf2d5ef100 (diff)
downloadmpd-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.
Diffstat (limited to 'src/output_all.c')
-rw-r--r--src/output_all.c2
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