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 --- ax25ipd/ax25ipd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ax25ipd/ax25ipd.c') diff --git a/ax25ipd/ax25ipd.c b/ax25ipd/ax25ipd.c index 461147d..4888c07 100644 --- a/ax25ipd/ax25ipd.c +++ b/ax25ipd/ax25ipd.c @@ -28,10 +28,10 @@ jmp_buf restart_env; /* Prototypes */ void hupper(int); -int opt_version = 0; -int opt_loglevel = 0; -int opt_nofork = 0; -int opt_help = 0; +int opt_version; +int opt_loglevel; +int opt_nofork; +int opt_help; char opt_configfile[PATH_MAX]; char opt_ttydevice[PATH_MAX]; -- cgit v1.2.3