diff options
| author | David S. Miller <davem@nuts.ninka.net> | 2003-04-27 11:41:57 -0700 |
|---|---|---|
| committer | David S. Miller <davem@nuts.ninka.net> | 2003-04-27 11:41:57 -0700 |
| commit | b720d7f142d39ae52edaeefd627d3b2378d5701c (patch) | |
| tree | c9c7e115b7e728b6e6c2986b7699b34b809fae54 | |
| parent | 112721aec1b5de082bc36564fa5c2288d3f3e989 (diff) | |
[EBTABLES]: Make ebt_vlan.c use correct printf format for size_t.
| -rw-r--r-- | net/bridge/netfilter/ebt_vlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebt_vlan.c b/net/bridge/netfilter/ebt_vlan.c index af6a1278e02d..9dec3072f8a4 100644 --- a/net/bridge/netfilter/ebt_vlan.c +++ b/net/bridge/netfilter/ebt_vlan.c @@ -137,7 +137,7 @@ ebt_check_vlan(const char *tablename, */ if (datalen != sizeof(struct ebt_vlan_info)) { 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)); return -EINVAL; } |
