conf: remove unneeded global initialization

Global variables are initialized to 0 automatically. So remove the
initialization.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-03-23 17:40:56 +01:00
parent 205ab68ff9
commit a4bd71cd0c

View File

@ -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()
{