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:
jungsup lee 2016-01-06 14:18:50 +09:00 committed by Arun Raghavan
parent 19c71ce851
commit 13664cd977

View file

@ -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");