mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
rtpoll: Fix build error when building with DEBUG_TIMING
This typo causes a build error when DEBUG_TIMING is defined. Signed-off-by: jungsup lee <jungsup4.lee@samsung.com>
This commit is contained in:
parent
19c71ce851
commit
13664cd977
1 changed files with 1 additions and 1 deletions
|
|
@ -298,7 +298,7 @@ int pa_rtpoll_run(pa_rtpoll *p) {
|
||||||
p->timestamp = now;
|
p->timestamp = now;
|
||||||
if (!p->quit && p->timer_enabled)
|
if (!p->quit && p->timer_enabled)
|
||||||
pa_log("poll timeout: %d ms ",(int) ((timeout.tv_sec*1000) + (timeout.tv_usec / 1000)));
|
pa_log("poll timeout: %d ms ",(int) ((timeout.tv_sec*1000) + (timeout.tv_usec / 1000)));
|
||||||
else if (q->quit)
|
else if (p->quit)
|
||||||
pa_log("poll timeout is ZERO");
|
pa_log("poll timeout is ZERO");
|
||||||
else
|
else
|
||||||
pa_log("poll timeout is FOREVER");
|
pa_log("poll timeout is FOREVER");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue