diff options
Diffstat (limited to 'menu/simple.c')
-rw-r--r-- | menu/simple.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/menu/simple.c b/menu/simple.c index 7870a94e..2d26af86 100644 --- a/menu/simple.c +++ b/menu/simple.c @@ -19,12 +19,13 @@ #include "string.h" #include "syslinux.h" -char TESTING,RESCUE,MAIN,PREP; - -int menumain(void) +int menumain(char *cmdline) { t_menuitem * curr; + char TESTING,RESCUE,MAIN; /* The menus we're going to declare */ + (void)cmdline; /* Not used */ + // Choose the default title and setup default values for all attributes.... init_menusystem(NULL); |