Re: [PATCH] USB2NET : SR9800 : Use %zu to format size_t

2014-02-17 Thread David Miller

Already fixed in the net tree.
--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] USB2NET : SR9800 : Use %zu to format size_t

2014-02-17 Thread Geert Uytterhoeven
On 32-bit:

drivers/md/bcache/bset.c: In function ‘bch_dump_bset’:
drivers/md/bcache/bset.c:27: warning: format ‘%li’ expects type ‘long int’, but 
argument 3 has type ‘int’

Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org
---
 drivers/net/usb/sr9800.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/usb/sr9800.c b/drivers/net/usb/sr9800.c
index 4175eb9fdeca..801710883727 100644
--- a/drivers/net/usb/sr9800.c
+++ b/drivers/net/usb/sr9800.c
@@ -823,7 +823,7 @@ static int sr9800_bind(struct usbnet *dev, struct 
usb_interface *intf)
dev-rx_urb_size =
SR9800_BULKIN_SIZE[SR9800_MAX_BULKIN_2K].size;
}
-   netdev_dbg(dev-net, %s : setting rx_urb_size with : %ld\n, __func__,
+   netdev_dbg(dev-net, %s : setting rx_urb_size with : %zu\n, __func__,
   dev-rx_urb_size);
return 0;
 
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html