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 | |
parent | 7daa076d3e24e84ce1f4e9b6133783816575c4c8 (diff) | |
download | busybox-w32-9e954abc4f6b9c08fcd8b90f5ceaa465ecdfb38d.tar.gz busybox-w32-9e954abc4f6b9c08fcd8b90f5ceaa465ecdfb38d.tar.bz2 busybox-w32-9e954abc4f6b9c08fcd8b90f5ceaa465ecdfb38d.zip |
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.
-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"; | |||
101 | static int indent = 0; | 101 | static int indent = 0; |
102 | static struct termios ios_org; | 102 | static struct termios ios_org; |
103 | static int rows, cols; | 103 | static int rows, cols; |
104 | static struct menu *current_menu; | 104 | struct menu *current_menu; |
105 | static int child_count; | 105 | static int child_count; |
106 | static int single_menu_mode; | 106 | static int single_menu_mode; |
107 | 107 | ||