diff libao2/ao_pulse.c @ 24923:d0d04fe92bce

Remove idiotic check that would always be false
author reimar
date Sat, 03 Nov 2007 10:46:15 +0000
parents 148ca265fcb6
children 9ca05492f9f3
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 */