Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[tcp] Fix a 64bit compile time error
Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
pjaroszynski authored and mcb30 committed Jul 22, 2010
1 parent b8dd946 commit 02e6092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/tcp.c
Expand Up @@ -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 );
Expand Down

0 comments on commit 02e6092

Please sign in to comment.