mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-08-09 00:53:37 +08:00
replaced MIN to LWIP_MIN
This commit is contained in:
@@ -1163,7 +1163,7 @@ check_idle(arg)
|
||||
if (idle_time_hook != 0) {
|
||||
tlim = idle_time_hook(&idle);
|
||||
} else {
|
||||
itime = MIN(idle.xmit_idle, idle.recv_idle);
|
||||
itime = LWIP_MIN(idle.xmit_idle, idle.recv_idle);
|
||||
tlim = idle_time_limit - itime;
|
||||
}
|
||||
if (tlim <= 0) {
|
||||
|
||||
Reference in New Issue
Block a user