From 11e44a3936ad8f9bfcc68ba957ae3844f8c94169 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 3 Nov 2007 10:46:15 +0000 Subject: Remove idiotic check that would always be false git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24951 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_pulse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libao2/ao_pulse.c') diff --git a/libao2/ao_pulse.c b/libao2/ao_pulse.c index ad4a7447bc..97c0c8398e 100644 --- a/libao2/ao_pulse.c +++ b/libao2/ao_pulse.c @@ -300,7 +300,7 @@ static int get_space(void) { pa_threaded_mainloop_lock(mainloop); l = pa_stream_writable_size(stream); pa_threaded_mainloop_unlock(mainloop); - return l < 0 ? 0 : l; + return l; } /** Return the current latency in seconds */ -- cgit v1.2.3