Commit 803d84e5 authored by David S. Miller's avatar David S. Miller

[NETFILTER]: Use correct size_t printk format string in ipt_addrtype.c

parent d4c6fff7
......@@ -48,7 +48,7 @@ static int checkentry(const char *tablename, const struct ipt_ip *ip,
unsigned int hook_mask)
{
if (matchsize != IPT_ALIGN(sizeof(struct ipt_addrtype_info))) {
printk(KERN_ERR "ipt_addrtype: invalid size (%u != %u)\n.",
printk(KERN_ERR "ipt_addrtype: invalid size (%u != %Zu)\n.",
matchsize, IPT_ALIGN(sizeof(struct ipt_addrtype_info)));
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