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:
parent
33975a41d9
commit
561085a191
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue