Fixed wrong printf formatter

This commit is contained in:
goldsimon 2010-02-10 07:58:01 +00:00
parent 45e51d1929
commit 44af02aa1e

View File

@ -1160,7 +1160,7 @@ tcp_receive(struct tcp_pcb *pcb)
if (tcplen > pcb->rcv_wnd) {
LWIP_DEBUGF(TCP_INPUT_DEBUG,
("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));
if (TCPH_FLAGS(inseg.tcphdr) & TCP_FIN) {
/* Must remove the FIN from the header as we're trimming