commit 8b98895e7de6060ec7c756502383218d430df751 Author: David Weinehall Date: Mon Jan 8 18:44:49 2018 +0200 sync: Fix diffgreater comparison While transitioning from CARD64 to int64, the GreaterThan call was mistakenly been transformed into ">=". Part of this was fixed already in commit 8060196a3e80a3c0ad2c0abbe459416821cd366c This patch fixes the remaining issue. Signed-off-by: David Weinehall diff --git a/Xext/sync.c b/Xext/sync.c index 37d41f22410d..8f22a865bb35 100644 --- a/Xext/sync.c +++ b/Xext/sync.c @@ -660,7 +660,7 @@ SyncAwaitTriggerFired(SyncTrigger * pTrigger) */ if (overflow) continue; - diffgreater = diff >= pAwait->event_threshold; + diffgreater = diff > pAwait->event_threshold; diffequal = diff == pAwait->event_threshold; /* "If the test-type is PositiveTransition or