diff options
author | Erwan Velu <erwanaliasr1@gmail.com> | 2010-05-12 21:49:10 +0200 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-05-12 14:57:03 -0700 |
commit | cc122356f56a3cb45a01d31ecadf1f4f1f2e8441 (patch) | |
tree | 086e7921b43aa9d819539b7eca15836a05278780 | |
parent | aa5b96cf400d2485d670b7dcd019cb051bcd9533 (diff) | |
download | syslinux-cc122356f56a3cb45a01d31ecadf1f4f1f2e8441.tar.gz syslinux-cc122356f56a3cb45a01d31ecadf1f4f1f2e8441.tar.xz syslinux-cc122356f56a3cb45a01d31ecadf1f4f1f2e8441.zip |
hdt: casting to avoid useless warning
-rw-r--r-- | com32/hdt/hdt-menu-syslinux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/hdt/hdt-menu-syslinux.c b/com32/hdt/hdt-menu-syslinux.c index 02de5b31..aaddf179 100644 --- a/com32/hdt/hdt-menu-syslinux.c +++ b/com32/hdt/hdt-menu-syslinux.c @@ -74,7 +74,7 @@ void compute_syslinuxmenu(struct s_my_menu *menu, struct s_hardware *hardware) snprintf(buffer, sizeof buffer, "%s", hardware->sv->copyright_string); /* Remove the trailing LF in the copyright string to avoid scrolling */ snprintf(statbuffer, sizeof statbuffer, "%s", - remove_trailing_lf(hardware->sv->copyright_string)); + remove_trailing_lf((char *)hardware->sv->copyright_string)); add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); menu->items_count++; |