Skip to content

Commit

Permalink
usbnet: Print device statistics as unsigned
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Jun 13, 2010
1 parent 4472702 commit 8ccef43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/usb/usbnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 8ccef43

Please sign in to comment.