From 44af02aa1e4fd76d7090c5fb861e5ba4d0612991 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Wed, 10 Feb 2010 07:58:01 +0000 Subject: [PATCH] Fixed wrong printf formatter --- src/core/tcp_in.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp_in.c b/src/core/tcp_in.c index 5926b269..ec434432 100644 --- a/src/core/tcp_in.c +++ b/src/core/tcp_in.c @@ -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