Преглед изворни кода

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>
Eric Dumazet пре 13 година
родитељ
комит
ace30d73ef
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      include/net/netfilter/xt_log.h

+ 1 - 1
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;