summaryrefslogtreecommitdiffstats
path: root/ax25ipd
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 01:42:06 +0200
committerRalf Baechle <ralf@linux-mips.org>2015-05-02 18:16:05 +0200
commit1725ab720b56a94f895528a8aa89fe054ae9136d (patch)
tree34eab8fff24a2143a93588fa2ed4fdfbdc3c133a /ax25ipd
parent904e050aa0f4250adc7b7f8125000ef26715abef (diff)
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 <ralf@linux-mips.org>
Diffstat (limited to 'ax25ipd')
-rw-r--r--ax25ipd/ax25ipd.c8
1 files changed, 4 insertions, 4 deletions
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];