From ddf4e174113d99268da9ee2633eefd79ae8d82c3 Mon Sep 17 00:00:00 2001 From: Joel Cunningham Date: Wed, 3 May 2017 09:29:02 -0500 Subject: [PATCH] tcp: indentation fix in tcp_receive() TCP_OVERSIZE block was moved out from inside the while loop and thus should be on column 7 --- src/core/tcp_in.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/tcp_in.c b/src/core/tcp_in.c index 85cc6128..fcfbf3b1 100644 --- a/src/core/tcp_in.c +++ b/src/core/tcp_in.c @@ -1247,9 +1247,9 @@ tcp_receive(struct tcp_pcb *pcb) pcb->polltmr = 0; #if TCP_OVERSIZE - if (pcb->unsent == NULL) { - pcb->unsent_oversize = 0; - } + if (pcb->unsent == NULL) { + pcb->unsent_oversize = 0; + } #endif /* TCP_OVERSIZE */ #if LWIP_IPV6 && LWIP_ND6_TCP_REACHABILITY_HINTS