Commit 75eb687f authored by David S. Miller's avatar David S. Miller

[EBTABLES]: Use correct printf format for size_t.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c37fa339
...@@ -135,7 +135,7 @@ static void ebt_ulog(const struct sk_buff *skb, unsigned int hooknr, ...@@ -135,7 +135,7 @@ static void ebt_ulog(const struct sk_buff *skb, unsigned int hooknr,
size = NLMSG_SPACE(sizeof(*pm) + copy_len); size = NLMSG_SPACE(sizeof(*pm) + copy_len);
if (size > nlbufsiz) { if (size > nlbufsiz) {
PRINTR("ebt_ulog: Size %d needed, but nlbufsiz=%d\n", PRINTR("ebt_ulog: Size %Zd needed, but nlbufsiz=%d\n",
size, nlbufsiz); size, nlbufsiz);
return; return;
} }
......
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