From a4bd71cd0cb55b2ae99972a1428cd38fae2cd1c6 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Fri, 23 Mar 2012 17:40:56 +0100 Subject: [PATCH] conf: remove unneeded global initialization Global variables are initialized to 0 automatically. So remove the initialization. Signed-off-by: David Herrmann --- src/conf.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/conf.c b/src/conf.c index 7699952..5999df2 100644 --- a/src/conf.c +++ b/src/conf.c @@ -39,11 +39,7 @@ #define LOG_SUBSYSTEM "config" -struct conf_obj conf_global = { - .exit = 0, - .debug = 0, - .verbose = 0, -}; +struct conf_obj conf_global; static void print_help() {