tcp: indentation fix in tcp_receive()

TCP_OVERSIZE block was moved out from inside the while loop and thus
should be on column 7
This commit is contained in:
Joel Cunningham 2017-05-03 09:29:02 -05:00
parent 4cf6f9ed51
commit ddf4e17411

View File

@ -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