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

@ -232,7 +232,7 @@ static void thread_func(void *userdata) {
if (PA_UNLIKELY(u->sink->thread_info.rewind_requested)) if (PA_UNLIKELY(u->sink->thread_info.rewind_requested))
pa_sink_process_rewind(u->sink, 0); pa_sink_process_rewind(u->sink, 0);
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) if ((ret = pa_rtpoll_run(u->rtpoll)) < 0)
goto fail; goto fail;
if (ret == 0) if (ret == 0)

View file

@ -198,7 +198,7 @@ static void thread_func(void *userdata) {
for (;;) { for (;;) {
int ret; int ret;
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) if ((ret = pa_rtpoll_run(u->rtpoll)) < 0)
goto fail; goto fail;
if (ret == 0) if (ret == 0)

View file

@ -678,7 +678,7 @@ static void thread_func(void *userdata) {
pa_sink_process_rewind(ca_sink->pa_sink, 0); 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) if (ret < 0)
goto fail; goto fail;

View file

@ -783,7 +783,7 @@ static void thread_func(void *userdata) {
} }
/* Hmm, nothing to do. Let's sleep */ /* Hmm, nothing to do. Let's sleep */
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) if ((ret = pa_rtpoll_run(u->rtpoll)) < 0)
goto fail; goto fail;
if (ret == 0) if (ret == 0)

View file

@ -276,7 +276,7 @@ static void thread_func(void *userdata) {
pa_rtpoll_set_timer_disabled(u->rtpoll); pa_rtpoll_set_timer_disabled(u->rtpoll);
/* Hmm, nothing to do. Let's sleep */ /* Hmm, nothing to do. Let's sleep */
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) if ((ret = pa_rtpoll_run(u->rtpoll)) < 0)
goto fail; goto fail;
if (ret == 0) if (ret == 0)

View file

@ -353,7 +353,7 @@ static void thread_func(void *userdata) {
pollfd->events = (short) (u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0); pollfd->events = (short) (u->sink->thread_info.state == PA_SINK_RUNNING ? POLLOUT : 0);
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) if ((ret = pa_rtpoll_run(u->rtpoll)) < 0)
goto fail; goto fail;
if (ret == 0) if (ret == 0)