diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-08 07:58:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-08 07:58:30 +0000 |
commit | 9e954abc4f6b9c08fcd8b90f5ceaa465ecdfb38d (patch) | |
tree | 28fdbfbcdf4f8a0811a16cdc23da9cca3c92edc7 /scripts | |
parent | 7daa076d3e24e84ce1f4e9b6133783816575c4c8 (diff) | |
download | busybox-9e954abc4f6b9c08fcd8b90f5ceaa465ecdfb38d.tar.gz |
As noticed by egor duda, current_menu is declared as 'extern struct menu
*current_menu;' in scripts/config/lkc.h line 63, and this conflicts with
static definition in mconf.c.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config/mconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config/mconf.c b/scripts/config/mconf.c index 0ac3a8d07..63b4ff72f 100644 --- a/scripts/config/mconf.c +++ b/scripts/config/mconf.c @@ -101,7 +101,7 @@ static char filename[PATH_MAX+1] = ".config"; static int indent = 0; static struct termios ios_org; static int rows, cols; -static struct menu *current_menu; +struct menu *current_menu; static int child_count; static int single_menu_mode; |