usb: gadget: rndis: use %z format specifier for size_t

Use '%z' format specifier for sizeof operator instead
of '%u' to fix build warnings like:

    warning: format '%u' expects type 'unsigned int', but argument 3 has type 'long unsigned int'

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
This commit is contained in:
Amit Pundir 2015-12-30 03:05:44 +05:30 committed by John Stultz
parent 33975a41d9
commit 561085a191

View file

@ -1104,7 +1104,7 @@ int rndis_rm_hdr(struct gether *port,
}
if (skb->len < sizeof *hdr) {
pr_err("invalid rndis pkt: skblen:%u hdr_len:%u",
pr_err("invalid rndis pkt: skblen:%u hdr_len:%zu",
skb->len, sizeof *hdr);
dev_kfree_skb_any(skb);
return -EINVAL;