mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-24 15:14:06 +00:00
Fix that one of Douglas' optimizations broke the timers
The unit tests failed and I didn't notice it :-(
This commit is contained in:
parent
b4768f1711
commit
b6c0c52d66
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user