aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandrakesoft.com>2004-08-22 23:05:36 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-22 23:05:36 -0700
commit3d67e6da30b49622350db2a5910d9e83eefc3219 (patch)
treed4d828c890b3c934bc174fcc5b6c7e9a362a886e
parentd86f67713b53b625ab1fd1ef4b5b8cda9e3362d7 (diff)
downloadhistory-3d67e6da30b49622350db2a5910d9e83eefc3219.tar.gz
[PATCH] fix compiling oldconfig with gcc-3.5
fix compiling oldconfig with gcc-3.5: Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-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 6f8bf9904da984..367735b184a26c 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -88,7 +88,7 @@ static char *args[1024], **argptr = args;
static int indent;
static struct termios ios_org;
static int rows = 0, cols = 0;
-static struct menu *current_menu;
+struct menu *current_menu;
static int child_count;
static int do_resize;
static int single_menu_mode;