aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2012-03-01 02:56:59 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2012-03-07 17:41:52 +0100
commitace30d73ef09fd5f95b24c5c1c5aa11963981494 (patch)
tree0299eb54478deddc719e4aff9d24ad9d34529912 /include
parentnetfilter: xt_CT: allow to attach timeout policy + glue code (diff)
downloadlinux-dev-ace30d73ef09fd5f95b24c5c1c5aa11963981494.tar.xz
linux-dev-ace30d73ef09fd5f95b24c5c1c5aa11963981494.zip
netfilter: xt_LOG: add __printf() to sb_add()
Helps to find format mismatches at compile time Suggested-by: David Laight <David.Laight@ACULAB.COM> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/netfilter/xt_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netfilter/xt_log.h b/include/net/netfilter/xt_log.h
index 0dfb34a5b53c..7e1544e8f70d 100644
--- a/include/net/netfilter/xt_log.h
+++ b/include/net/netfilter/xt_log.h
@@ -6,7 +6,7 @@ struct sbuff {
};
static struct sbuff emergency, *emergency_ptr = &emergency;
-static int sb_add(struct sbuff *m, const char *f, ...)
+static __printf(2, 3) int sb_add(struct sbuff *m, const char *f, ...)
{
va_list args;
int len;