Commit ace30d73 authored by Eric Dumazet's avatar Eric Dumazet Committed by Pablo Neira Ayuso

netfilter: xt_LOG: add __printf() to sb_add()

Helps to find format mismatches at compile time
Suggested-by: default avatarDavid Laight <David.Laight@ACULAB.COM>
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
parent 24de58f4
...@@ -6,7 +6,7 @@ struct sbuff { ...@@ -6,7 +6,7 @@ struct sbuff {
}; };
static struct sbuff emergency, *emergency_ptr = &emergency; 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; va_list args;
int len; int len;
......
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