pulseaudio: Add missing return value to the "push" function

This commit is contained in:
scribam 2019-08-22 18:26:22 +02:00
parent e6acf3563f
commit 80770b4eb9
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ static u32 pulseaudio_push(void* frame, u32 samples, bool wait)
if (pa_simple_write(pulse_stream, frame, (size_t) samples*4, NULL) < 0) {
WARN_LOG(AUDIO, stderr, "PulseAudio: pa_simple_write() failed!");
}
return 0;
}
static void pulseaudio_term() {