diff options
-rw-r--r-- | com32/hdt/hdt-menu-about.c | 2 | ||||
-rw-r--r-- | com32/hdt/hdt-menu.c | 1 | ||||
-rw-r--r-- | com32/hdt/hdt.h | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/com32/hdt/hdt-menu-about.c b/com32/hdt/hdt-menu-about.c index a5c1b0e6..f19dc361 100644 --- a/com32/hdt/hdt-menu-about.c +++ b/com32/hdt/hdt-menu-about.c @@ -54,7 +54,7 @@ void compute_aboutmenu(struct s_my_menu *menu) add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; - snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); + snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT); snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; diff --git a/com32/hdt/hdt-menu.c b/com32/hdt/hdt-menu.c index a865e672..b531bc78 100644 --- a/com32/hdt/hdt-menu.c +++ b/com32/hdt/hdt-menu.c @@ -275,6 +275,7 @@ void compute_main_menu(struct s_hdt_menu *hdt_menu, struct s_hardware *hardware) HDT_SWITCH_TO_CLI, 0); add_item("<A>bout", "About Menu", OPT_SUBMENU, NULL, hdt_menu->about_menu.menu); + add_item("E<x>it","Exit", OPT_EXITMENU,NULL,0); hdt_menu->main_menu.items_count++; hdt_menu->total_menu_count += hdt_menu->main_menu.items_count; diff --git a/com32/hdt/hdt.h b/com32/hdt/hdt.h index 84ecc2d2..14c94b36 100644 --- a/com32/hdt/hdt.h +++ b/com32/hdt/hdt.h @@ -30,7 +30,7 @@ #define DEFINE_HDT_H #define PRODUCT_NAME "Hardware Detection Tool" -#define AUTHOR "Erwan Vèlu" +#define AUTHOR "Erwan Velu" #define CONTACT "erwan(dot)velu(point)free(dot)fr" #define VERSION "0.2.7" #define NB_CONTRIBUTORS 2 |