Commit b720d7f1 authored by David S. Miller's avatar David S. Miller

[EBTABLES]: Make ebt_vlan.c use correct printf format for size_t.

parent 112721ae
...@@ -137,7 +137,7 @@ ebt_check_vlan(const char *tablename, ...@@ -137,7 +137,7 @@ ebt_check_vlan(const char *tablename,
*/ */
if (datalen != sizeof(struct ebt_vlan_info)) { if (datalen != sizeof(struct ebt_vlan_info)) {
DEBUG_MSG DEBUG_MSG
("passed size %d is not eq to ebt_vlan_info (%d)\n", ("passed size %d is not eq to ebt_vlan_info (%Zd)\n",
datalen, sizeof(struct ebt_vlan_info)); datalen, sizeof(struct ebt_vlan_info));
return -EINVAL; return -EINVAL;
} }
......
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