diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2010-06-08 08:20:59 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-12 18:18:33 -0700 |
commit | 8ccef431a2994bb8a722d0fbc6c6da2bdbf86834 (patch) | |
tree | 63a2fc3d4b454fe673301785c8394add7908bd07 | |
parent | 4472702e6575809c2d232efc09ac25caf66b395d (diff) |
usbnet: Print device statistics as unsigned
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/usb/usbnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index a95c73de582..44115eea57f 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c @@ -643,7 +643,7 @@ int usbnet_stop (struct net_device *net) netif_stop_queue (net); netif_info(dev, ifdown, dev->net, - "stop stats: rx/tx %ld/%ld, errs %ld/%ld\n", + "stop stats: rx/tx %lu/%lu, errs %lu/%lu\n", net->stats.rx_packets, net->stats.tx_packets, net->stats.rx_errors, net->stats.tx_errors); |