mirror of https://github.com/ipxe/ipxe.git
[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>pull/1/head
parent
b8dd94686b
commit
02e6092cd5
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue