From 4a2d03a51757dfdcd4e8befa6b9b9dc2e680c651 Mon Sep 17 00:00:00 2001 From: jani Date: Fri, 10 Jan 2003 15:36:47 +0000 Subject: [PATCH] seqno is u32_t so use %lu instead of %ld when printing it --- 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 9288bbcb..05a70167 100644 --- a/src/core/tcp_in.c +++ b/src/core/tcp_in.c @@ -872,7 +872,7 @@ tcp_receive(struct tcp_pcb *pcb) /* the whole segment is < rcv_nxt */ /* must be a duplicate of a packet that has already been correctly handled */ - DEBUGF(TCP_INPUT_DEBUG, ("tcp_receive: duplicate seqno %ld\n", seqno)); + DEBUGF(TCP_INPUT_DEBUG, ("tcp_receive: duplicate seqno %lu\n", seqno)); } }