mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
rtpoll: Drop extra wait_op argument to pa_rtpoll_run()
is always true, not used Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
2638591497
commit
fa092af59c
17 changed files with 23 additions and 24 deletions
|
|
@ -1498,7 +1498,7 @@ static void thread_func(void *userdata) {
|
|||
pollfd->events = (short) (((u->sink && PA_SINK_IS_LINKED(u->sink->thread_info.state) && !writable) ? POLLOUT : 0) |
|
||||
(u->source && PA_SOURCE_IS_LINKED(u->source->thread_info.state) ? POLLIN : 0));
|
||||
|
||||
if ((ret = pa_rtpoll_run(u->rtpoll, true)) < 0) {
|
||||
if ((ret = pa_rtpoll_run(u->rtpoll)) < 0) {
|
||||
pa_log_debug("pa_rtpoll_run failed with: %d", ret);
|
||||
goto fail;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue