Mercurial > mplayer.hg
changeset 24923:d0d04fe92bce
Remove idiotic check that would always be false
author | reimar |
---|---|
date | Sat, 03 Nov 2007 10:46:15 +0000 |
parents | 7050d3a8e46c |
children | d67ef87b445c |
files | libao2/ao_pulse.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libao2/ao_pulse.c Sat Nov 03 10:44:57 2007 +0000 +++ b/libao2/ao_pulse.c Sat Nov 03 10:46:15 2007 +0000 @@ -300,7 +300,7 @@ 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 */