david/ipxe
Archived
1
0

[3c90x] Add missing size_t format specifier

Signed-off-by: Michael Brown <mcb30@etherboot.org>
This commit is contained in:
Joshua Oreman 2009-03-31 07:10:40 +01:00 committed by Michael Brown
parent bbd274a1d6
commit 210bc9e9ba

View File

@ -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--;