aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/xt_CONNSECMARK.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2007-12-17 22:43:15 -0800
committerDavid S. Miller <davem@davemloft.net>2008-01-28 14:59:07 -0800
commitdf54aae02210e1acf3a1d2ffac9b29003835710c (patch)
treed47f56e3531e2ea4044dec6c2bc05b71ed190c8b /net/netfilter/xt_CONNSECMARK.c
parent[NETFILTER]: nf_nat: properly use RCU for ip_nat_decode_session (diff)
downloadlinux-dev-df54aae02210e1acf3a1d2ffac9b29003835710c.tar.xz
linux-dev-df54aae02210e1acf3a1d2ffac9b29003835710c.zip
[NETFILTER]: x_tables: use %u format specifiers
Use %u format specifiers as ->family is unsigned. Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netfilter/xt_CONNSECMARK.c')
-rw-r--r--net/netfilter/xt_CONNSECMARK.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_CONNSECMARK.c b/net/netfilter/xt_CONNSECMARK.c
index 2333f7e29bc9..024106bdd378 100644
--- a/net/netfilter/xt_CONNSECMARK.c
+++ b/net/netfilter/xt_CONNSECMARK.c
@@ -106,7 +106,7 @@ connsecmark_tg_check(const char *tablename, const void *entry,
if (nf_ct_l3proto_try_module_get(target->family) < 0) {
printk(KERN_WARNING "can't load conntrack support for "
- "proto=%d\n", target->family);
+ "proto=%u\n", target->family);
return false;
}
return true;