mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-27 15:16:03 +00:00
Fixed wrong printf formatter
This commit is contained in:
parent
45e51d1929
commit
44af02aa1e
@ -1160,7 +1160,7 @@ tcp_receive(struct tcp_pcb *pcb)
|
|||||||
if (tcplen > pcb->rcv_wnd) {
|
if (tcplen > pcb->rcv_wnd) {
|
||||||
LWIP_DEBUGF(TCP_INPUT_DEBUG,
|
LWIP_DEBUGF(TCP_INPUT_DEBUG,
|
||||||
("tcp_receive: other end overran receive window"
|
("tcp_receive: other end overran receive window"
|
||||||
"seqno %"U32_F" len %"U32_F" right edge %"U32_F"\n",
|
"seqno %"U32_F" len %"U16_F" right edge %"U32_F"\n",
|
||||||
seqno, tcplen, pcb->rcv_nxt + pcb->rcv_wnd));
|
seqno, tcplen, pcb->rcv_nxt + pcb->rcv_wnd));
|
||||||
if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {
|
if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {
|
||||||
/* Must remove the FIN from the header as we're trimming
|
/* Must remove the FIN from the header as we're trimming
|
||||||
|
Loading…
Reference in New Issue
Block a user