summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/zconf.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y
index 96081aa0fef0..22fceb264cf5 100644
--- a/scripts/kconfig/zconf.y
+++ b/scripts/kconfig/zconf.y
@@ -31,7 +31,7 @@ struct symbol *symbol_hash[SYMBOL_HASHSIZE];
31static struct menu *current_menu, *current_entry; 31static struct menu *current_menu, *current_entry;
32 32
33%} 33%}
34%expect 31 34%expect 30
35 35
36%union 36%union
37{ 37{
@@ -117,7 +117,7 @@ start: mainmenu_stmt stmt_list | stmt_list;
117 117
118/* mainmenu entry */ 118/* mainmenu entry */
119 119
120mainmenu_stmt: T_MAINMENU prompt nl 120mainmenu_stmt: T_MAINMENU prompt T_EOL
121{ 121{
122 menu_add_prompt(P_MENU, $2, NULL); 122 menu_add_prompt(P_MENU, $2, NULL);
123}; 123};