From 4a0fbe37a9879ade6a6bf99ab105316284eb4102 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 24 Oct 2009 01:30:28 +0200 Subject: realm: remove static initializations Save a little disk space, they are initialized to zero anyway. Signed-off-by: Jan Engelhardt --- extensions/libipt_realm.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'extensions/libipt_realm.c') diff --git a/extensions/libipt_realm.c b/extensions/libipt_realm.c index c9e17601..be1943ed 100644 --- a/extensions/libipt_realm.c +++ b/extensions/libipt_realm.c @@ -35,10 +35,9 @@ struct realmname { }; /* array of realms from /etc/iproute2/rt_realms */ -static struct realmname *realms = NULL; +static struct realmname *realms; /* 1 if loading failed */ -static int rdberr = 0; - +static int rdberr; static void load_realms(void) { -- cgit v1.2.3