fix comment

This commit is contained in:
ZappoMan 2013-11-08 02:26:23 -08:00
parent a708486834
commit 3da6062639

View file

@ -142,7 +142,6 @@ bool PacketSender::process() {
now = usecTimestampNow();
uint64_t elapsed = now - _lastSendTime;
int usecToSleep = INTERVAL_SLEEP_USECS - elapsed;
// we only sleep in non-threaded mode
if (usecToSleep > 0) {
if (usecToSleep > INTERVAL_SLEEP_USECS) {
usecToSleep = INTERVAL_SLEEP_USECS;