From 794033aa7512f148190cf0ea48b0058dcfe34e32 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 9 Jan 2006 12:37:17 +0000 Subject: fix synchronized clock change git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@425 fefdeb5f-60dc-0310-8127-8f9354f1896f --- polyp/polyplib-stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'polyp') diff --git a/polyp/polyplib-stream.c b/polyp/polyplib-stream.c index 440217e7..a1a66990 100644 --- a/polyp/polyplib-stream.c +++ b/polyp/polyplib-stream.c @@ -414,7 +414,7 @@ static void stream_get_latency_info_callback(struct pa_pdispatch *pd, uint32_t c } else { gettimeofday(&now, NULL); - if (pa_timeval_cmp(&local, &remote) < 0 && pa_timeval_cmp(&remote, &now)) { + if (pa_timeval_cmp(&local, &remote) < 0 && pa_timeval_cmp(&remote, &now) < 0) { /* local and remote seem to have synchronized clocks */ if (o->stream->direction == PA_STREAM_PLAYBACK) -- cgit