From 9f84fe6d5a8ee3e9243e8f9ba0939db33d648776 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 31 Jul 2019 19:43:33 -0400 Subject: [PATCH] Make it Squeak --- indra/llcommon/aisyncclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/aisyncclient.cpp b/indra/llcommon/aisyncclient.cpp index 926197338..191a2627d 100644 --- a/indra/llcommon/aisyncclient.cpp +++ b/indra/llcommon/aisyncclient.cpp @@ -90,7 +90,7 @@ bool operator==(AISyncKey const& key1, AISyncKey const& key2) { // Test if these keys match based on time. - if (std::abs((key1.mStartFrameCount - key2.mStartFrameCount)) > 1 && + if (std::abs((S64)(key1.mStartFrameCount - key2.mStartFrameCount)) > 1 && std::abs(key1.mFrameTimer.getStartTime() - key2.mFrameTimer.getStartTime()) >= sSyncKeyExpirationTime) { return false;