aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/mconf.c
diff options
context:
space:
mode:
authorRandy Dunlap <rddunlap@osdl.org>2003-08-01 01:02:12 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2003-08-01 01:02:12 -0700
commitae87487b6cc7e0a0837a88305cbe3391b156d046 (patch)
tree88d00becf6e7fa2aa7287f176f600094363e961c /scripts/kconfig/mconf.c
parent53ef8f80eeb714a0c4f136295b983f58c350881e (diff)
downloadhistory-ae87487b6cc7e0a0837a88305cbe3391b156d046.tar.gz
[PATCH] janitor: don't init statics to 0
From: Leann Ogasawara <ogasawara@osdl.org> Uninitialize static variables initialized to 0 so they are pushed to the .bss instead of .data.
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r--scripts/kconfig/mconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 1228698685544..9d61557747e1f 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -85,7 +85,7 @@ static char buf[4096], *bufptr = buf;
static char input_buf[4096];
static char filename[PATH_MAX+1] = ".config";
static char *args[1024], **argptr = args;
-static int indent = 0;
+static int indent;
static struct termios ios_org;
static int rows, cols;
static struct menu *current_menu;