conf: remove unneeded global initialization
authorDavid Herrmann <dh.herrmann@googlemail.com>
Fri, 23 Mar 2012 16:40:56 +0000 (17:40 +0100)
committerDavid Herrmann <dh.herrmann@googlemail.com>
Fri, 23 Mar 2012 16:40:56 +0000 (17:40 +0100)
Global variables are initialized to 0 automatically. So remove the
initialization.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
src/conf.c

index 7699952..5999df2 100644 (file)
 
 #define LOG_SUBSYSTEM "config"
 
-struct conf_obj conf_global = {
-       .exit = 0,
-       .debug = 0,
-       .verbose = 0,
-};
+struct conf_obj conf_global;
 
 static void print_help()
 {