Fix that one of Douglas' optimizations broke the timers
The unit tests failed and I didn't notice it :-(
This commit is contained in:
@@ -340,7 +340,7 @@ sys_check_timeouts(void)
|
||||
return;
|
||||
}
|
||||
|
||||
if (TIME_LESS_OR_EQUAL_THAN(now, tmptimeout->time)) {
|
||||
if (TIME_LESS_OR_EQUAL_THAN(tmptimeout->time, now) == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user