]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[tcp] Fix a 64bit compile time error
authorPiotr Jaroszyński <p.jaroszynski@gmail.com>
Thu, 22 Jul 2010 20:10:40 +0000 (22:10 +0200)
committerMichael Brown <mcb30@ipxe.org>
Thu, 22 Jul 2010 20:25:40 +0000 (21:25 +0100)
Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/net/tcp.c

index 28e8399ea366db4866ba98ea2a04643c3df73e3f..b2d882732268a9bfbf934905d1bce47a7bf44896 100644 (file)
@@ -1111,7 +1111,7 @@ static int tcp_rx ( struct io_buffer *iobuf,
                    ( ( flags & TCP_FIN ) ? 1 : 0 ) );
 
        /* Dump header */
-       DBGC2 ( tcp, "TCP %p RX %d<-%d           %08x %08x..%08zx %4zd",
+       DBGC2 ( tcp, "TCP %p RX %d<-%d           %08x %08x..%08x %4zd",
                tcp, ntohs ( tcphdr->dest ), ntohs ( tcphdr->src ),
                ntohl ( tcphdr->ack ), ntohl ( tcphdr->seq ),
                ( ntohl ( tcphdr->seq ) + seq_len ), len );