mirror of https://github.com/ipxe/ipxe.git
[3c90x] Add missing size_t format specifier
Signed-off-by: Michael Brown <mcb30@etherboot.org>pull/1/head
parent
bbd274a1d6
commit
210bc9e9ba
|
@ -296,7 +296,7 @@ static void a3c90x_process_tx_packets(struct net_device *netdev)
|
|||
netdev_tx_complete(netdev, p->tx_iobuf[p->tx_tail]);
|
||||
|
||||
DBG("transmitted packet\n");
|
||||
DBG(" size: %d\n", iob_len(p->tx_iobuf[p->tx_tail]));
|
||||
DBG(" size: %zd\n", iob_len(p->tx_iobuf[p->tx_tail]));
|
||||
|
||||
p->tx_tail = (p->tx_tail + 1) % TX_RING_SIZE;
|
||||
p->tx_cnt--;
|
||||
|
|
Loading…
Reference in New Issue