From cc122356f56a3cb45a01d31ecadf1f4f1f2e8441 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Wed, 12 May 2010 21:49:10 +0200 Subject: [PATCH] hdt: casting to avoid useless warning --- com32/hdt/hdt-menu-syslinux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com32/hdt/hdt-menu-syslinux.c b/com32/hdt/hdt-menu-syslinux.c index 02de5b3..aaddf17 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++; -- 2.7.4