diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-04-19 09:42:25 +0200 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-04-19 09:42:25 +0200 |
commit | c777a875cc3dca6888d2d14f0d9a90d53f73deb2 (patch) | |
tree | 5c64b2004e5685a30254e14a0cd399c29bb60854 | |
parent | 577f705569c24a8fa6e18ba3afcbedaf7db838fb (diff) | |
download | syslinux.git-c777a875cc3dca6888d2d14f0d9a90d53f73deb2.tar.gz syslinux.git-c777a875cc3dca6888d2d14f0d9a90d53f73deb2.tar.xz syslinux.git-c777a875cc3dca6888d2d14f0d9a90d53f73deb2.zip |
hdt: fixing typo
Impact: fixing compilation errors
Wrong call :(
-rw-r--r-- | com32/hdt/hdt-cli-dmi.c | 2 | ||||
-rw-r--r-- | com32/hdt/hdt-menu-dmi.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/com32/hdt/hdt-cli-dmi.c b/com32/hdt/hdt-cli-dmi.c index 76905db6..742c5fad 100644 --- a/com32/hdt/hdt-cli-dmi.c +++ b/com32/hdt/hdt-cli-dmi.c @@ -172,7 +172,7 @@ static void show_dmi_chassis(int argc __unused, char** argv __unused, hardware->dmi.chassis.version); printf(" Serial : %s\n", hardware->dmi.chassis.serial); printf(" Asset Tag : %s\n", - del_multiple_spaces(hardware->dmi.chassis.asset_tag)); + del_multi_spaces(hardware->dmi.chassis.asset_tag)); printf(" Boot up state : %s\n", hardware->dmi.chassis.boot_up_state); printf(" Power supply state : %s\n", diff --git a/com32/hdt/hdt-menu-dmi.c b/com32/hdt/hdt-menu-dmi.c index 5f87df93..a3a3a8e6 100644 --- a/com32/hdt/hdt-menu-dmi.c +++ b/com32/hdt/hdt-menu-dmi.c @@ -126,9 +126,9 @@ void compute_chassis(struct s_my_menu *menu, s_dmi * dmi) menu->items_count++; snprintf(buffer, sizeof buffer, "Asset Tag : %s", - del_multiple_spaces(dmi->chassis.asset_tag)); + del_multi_spaces(dmi->chassis.asset_tag)); snprintf(statbuffer, sizeof statbuffer, "Asset Tag: %s", - del_multiple_spaces(dmi->chassis.asset_tag)); + del_multi_spaces(dmi->chassis.asset_tag)); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; |