commit | 5ff0eb2efc1c73773ee81fe3207abc67f58b2a4c | [log] [tgz] |
---|---|---|
author | Amit Pundir <amit.pundir@linaro.org> | Fri Jan 08 19:36:02 2016 +0530 |
committer | Amit Pundir <amit.pundir@linaro.org> | Mon Oct 24 23:41:21 2016 +0800 |
tree | b9445db7cd4d1926f79711dda446a36f7f2f55de | |
parent | b9258e4c669c54226a827ba8ce8c65f4c0af31eb [diff] |
usb: gadget: u_ether: use %z format specifier for size_t Use '%zd' format specifier for size_t type instead of '%d' to fix build warnings like: drivers/usb/gadget/function/u_ether.c: In function ‘rx_submit’: drivers/usb/gadget/function/u_ether.c:244:2: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘size_t’ [-Wformat=] DBG(dev, "%s: size: %d\n", __func__, size); ^ Signed-off-by: Amit Pundir <amit.pundir@linaro.org>