rtpoll: Fixup pa_rtpoll_run

Commit fa092af59c removed an argument to pa_rtpoll_run, but
forgot to remove that argument for all callers to pa_rtpoll_run.

This commit removes the remaining ones.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
David Henningsson 2014-11-10 14:15:39 +01:00
parent fa092af59c
commit b3fa929a87
6 changed files with 6 additions and 6 deletions

View file

@ -678,7 +678,7 @@ static void thread_func(void *userdata) {
pa_sink_process_rewind(ca_sink->pa_sink, 0);
}
ret = pa_rtpoll_run(u->rtpoll, true);
ret = pa_rtpoll_run(u->rtpoll);
if (ret < 0)
goto fail;