* grub-core/normal/charset.c (grub_utf8_to_ucs4_alloc): Fix return type

to grub_ssize_t.
	* grub-core/normal/main.c (grub_normal_init_page): Fix msg_len type.
	* include/grub/charset.h (grub_utf8_to_ucs4_alloc): Fix prototype.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-26 17:20:30 +01:00
parent d43ad75467
commit 8b282ad222
4 changed files with 13 additions and 5 deletions

View file

@ -209,7 +209,7 @@ read_config_file (const char *config)
void
grub_normal_init_page (struct grub_term_output *term)
{
int msg_len;
grub_ssize_t msg_len;
int posx;
const char *msg = _("GNU GRUB version %s");
char *msg_formatted;