From 1725ab720b56a94f895528a8aa89fe054ae9136d Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 01:42:06 +0200 Subject: Remove useless initializations to 0 or NULL. They only inflate the .data section of the binary. Initializations to FALSE are still left to do. Signed-off-by: Ralf Baechle --- ax25rtd/ax25rtd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ax25rtd') diff --git a/ax25rtd/ax25rtd.c b/ax25rtd/ax25rtd.c index 5a7dca1..5b40228 100644 --- a/ax25rtd/ax25rtd.c +++ b/ax25rtd/ax25rtd.c @@ -61,12 +61,12 @@ config *Config = NULL; int reload = 0; -ip_rt_entry *ip_routes = NULL; -int ip_routes_cnt = 0; +ip_rt_entry *ip_routes; +int ip_routes_cnt; int ip_maxroutes = IP_MAXROUTES; -ax25_rt_entry *ax25_routes = NULL; -int ax25_routes_cnt = 0; +ax25_rt_entry *ax25_routes; +int ax25_routes_cnt; int ax25_maxroutes = AX25_MAXROUTES; char ip_encaps_dev[32] = ""; -- cgit v1.2.3