summaryrefslogtreecommitdiffstats
path: root/kiss/net2kiss.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 01:42:05 +0200
committerRalf Baechle <ralf@linux-mips.org>2013-06-17 17:11:30 +0200
commit5feb3d651dbd1b096a26963bd1dffcfe0a5f9eea (patch)
treeaa82bb7320480efba49b850b21193ecfee963fe3 /kiss/net2kiss.c
parent1245fbd2a8d60bab7b16b8a1d3c0122fee72f53f (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 'kiss/net2kiss.c')
-rw-r--r--kiss/net2kiss.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kiss/net2kiss.c b/kiss/net2kiss.c
index 04b4032..d3b5234 100644
--- a/kiss/net2kiss.c
+++ b/kiss/net2kiss.c
@@ -65,10 +65,10 @@
static int fdif, fdpty;
static struct ifreq ifr;
static char *progname;
-static int verbose = 0;
-static int i_am_unix98_pty_master = 0; /* unix98 ptmx support */
-static char *namepts = NULL; /* name of the unix98 pts slave, which
- * the client has to use */
+static int verbose;
+static int i_am_unix98_pty_master; /* unix98 ptmx support */
+static char *namepts; /* name of the unix98 pts slave, which
+ * the client has to use */
/* --------------------------------------------------------------------- */