summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authorErwan Velu <erwan.velu@free.fr>2009-02-15 10:25:52 +0100
committerH. Peter Anvin <hpa@zytor.com>2009-02-25 20:58:41 -0800
commit3e81f04f83d8024676ea7d687671edd912c28564 (patch)
tree817cf1074607d8edfcdd87eb0b24e4b290042472 /sample
parenta9f8610e2200b5362a08f5cddf7f1975af1595bb (diff)
downloadsyslinux-3e81f04f83d8024676ea7d687671edd912c28564.tar.gz
hdt: Fix typo
Diffstat (limited to 'sample')
-rw-r--r--sample/hdt.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sample/hdt.c b/sample/hdt.c
index 1ec4d6e7..f0685f0b 100644
--- a/sample/hdt.c
+++ b/sample/hdt.c
@@ -283,8 +283,9 @@ static int get_disk_params(int disk, struct diskinfo *disk_info)
disk_info[disk].ebios = disk_info[disk].cbios = 0;
/* Sending int 13h func 41h to query EBIOS information*/
- memset(&getebios, 0, sizeof (com32sys_t));
- memset(&ebios, 0, sizeof (com32sys_t));
+ memset(&getebios, 0, sizeof (com32sys_t));
+ memset(&ebios, 0, sizeof (com32sys_t));
+
/* Get EBIOS support */
getebios.eax.w[0] = 0x4100;
getebios.ebx.w[0] = 0x55aa;
@@ -613,7 +614,7 @@ void compute_memory_module(unsigned char *menu, s_dmi *dmi, int slot_number) {
add_item(buffer,"Memory Type",OPT_INACTIVE,NULL,0);
sprintf(buffer,"Type Details : %s",dmi->memory[i].type_detail);
- add_item(buffer,"Memory Ty^e Details",OPT_INACTIVE,NULL,0);
+ add_item(buffer,"Memory Type Details",OPT_INACTIVE,NULL,0);
sprintf(buffer,"Speed : %s",dmi->memory[i].speed);
add_item(buffer,"Speed (MHz)",OPT_INACTIVE,NULL,0);
@@ -979,7 +980,7 @@ if (is_dmi_valid) {
}
#ifdef WITH_PCI
add_item("","",OPT_SEP,"",0);
- add_item("<K>ernel modules","Kernel Modules",OPT_SUBMENU,NULL,KERNEL_MENU);
+ add_item("<K>ernel Modules","Kernel Modules",OPT_SUBMENU,NULL,KERNEL_MENU);
#endif
}