Remove idiotic check that would always be false

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24951 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-11-03 10:46:15 +00:00
parent 420b6b4d44
commit 11e44a3936
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ static int get_space(void) {
pa_threaded_mainloop_lock(mainloop); pa_threaded_mainloop_lock(mainloop);
l = pa_stream_writable_size(stream); l = pa_stream_writable_size(stream);
pa_threaded_mainloop_unlock(mainloop); pa_threaded_mainloop_unlock(mainloop);
return l < 0 ? 0 : l; return l;
} }
/** Return the current latency in seconds */ /** Return the current latency in seconds */