2005-08-30 Hollis Blanchard <hollis@penguinppc.org>

* term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): Fix
	`unused parameter' warning.
This commit is contained in:
hollisb 2005-08-31 01:26:34 +00:00
parent 003789c77c
commit 09fc77a7a3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-08-30 Hollis Blanchard <hollis@penguinppc.org>
* term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): Fix
`unused parameter' warning.
2005-08-30 Hollis Blanchard <hollis@penguinppc.org>
* term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): New

View File

@ -84,7 +84,7 @@ grub_ofconsole_putchar (grub_uint32_t c)
}
static grub_ssize_t
grub_ofconsole_getcharwidth (grub_uint32_t c)
grub_ofconsole_getcharwidth (grub_uint32_t c __attribute__((unused)))
{
return 1;
}