From 2963a8df2175be68af6cafce83a8561aa4cf6244 Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Thu, 30 Mar 2017 00:57:02 +0530 Subject: iptables: Remove explicit static variables initalization. Static variables are initialized to zero by default, so remove explicit initalization. This patch fixes the checkpatch issue. Signed-off-by: Varsha Rao Signed-off-by: Pablo Neira Ayuso --- iptables/xtables-restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iptables/xtables-restore.c') diff --git a/iptables/xtables-restore.c b/iptables/xtables-restore.c index a551c8c1..6afa0d0e 100644 --- a/iptables/xtables-restore.c +++ b/iptables/xtables-restore.c @@ -24,7 +24,7 @@ #define DEBUGP(x, args...) #endif -static int counters = 0, verbose = 0, noflush = 0; +static int counters, verbose, noflush; /* Keeping track of external matches and targets. */ static const struct option options[] = { -- cgit v1.2.3