Commit 9b57d51d authored by David S. Miller's avatar David S. Miller Committed by David S. Miller

[NETFILTER]: Use proper printf format for size_t in ipt_owner.c

parent 473ba53f
...@@ -169,7 +169,7 @@ checkentry(const char *tablename, ...@@ -169,7 +169,7 @@ checkentry(const char *tablename,
} }
if (matchsize != IPT_ALIGN(sizeof(struct ipt_owner_info))) { if (matchsize != IPT_ALIGN(sizeof(struct ipt_owner_info))) {
printk("Matchsize %u != %u\n", matchsize, printk("Matchsize %u != %Zu\n", matchsize,
IPT_ALIGN(sizeof(struct ipt_owner_info))); IPT_ALIGN(sizeof(struct ipt_owner_info)));
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment