From 5feb3d651dbd1b096a26963bd1dffcfe0a5f9eea Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 01:42:05 +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 --- user_call/user_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'user_call') diff --git a/user_call/user_io.c b/user_call/user_io.c index d7e03c8..0a25136 100644 --- a/user_call/user_io.c +++ b/user_call/user_io.c @@ -11,7 +11,7 @@ #define BUFLEN 8192 -int compression = 0; +int compression; int paclen_in = 256; int paclen_out = 256; @@ -22,7 +22,7 @@ static unsigned char buf[BUFLEN]; #include /* Error in (de)compression happened? */ -static int compression_error = 0; +static int compression_error; /* These are for the (de)compressor */ static unsigned char input_buffer[BUFLEN]; -- cgit v1.2.3