From da5b97c823d64758eb2d092a0eee500119385529 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 01:42:03 +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 --- nrconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nrconfig.c') diff --git a/nrconfig.c b/nrconfig.c index f275a15..aea1e52 100644 --- a/nrconfig.c +++ b/nrconfig.c @@ -29,8 +29,8 @@ typedef struct _nrport char *Description; } NR_Port; -static NR_Port *nr_ports = NULL; -static NR_Port *nr_port_tail = NULL; +static NR_Port *nr_ports; +static NR_Port *nr_port_tail; static int is_same_call(char *call1, char *call2) { -- cgit v1.2.3