diff --git a/src/common/Throttle.h b/src/common/Throttle.h index 28320f2dec8..440ef623997 100644 --- a/src/common/Throttle.h +++ b/src/common/Throttle.h @@ -76,7 +76,7 @@ public: Mutex::Locker l(lock); cond.SignalOne(); count -= c; - assert(c>=0); //if count goes negative, we failed somewhere! + assert(count >= 0); //if count goes negative, we failed somewhere! return count; } };