]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2005-08-30 Hollis Blanchard <hollis@penguinppc.org>
authorhollisb <hollisb@localhost>
Wed, 31 Aug 2005 01:26:34 +0000 (01:26 +0000)
committerhollisb <hollisb@localhost>
Wed, 31 Aug 2005 01:26:34 +0000 (01:26 +0000)
* term/ieee1275/ofconsole.c (grub_ofconsole_getcharwidth): Fix
`unused parameter' warning.

ChangeLog
term/ieee1275/ofconsole.c

index 14d7309ad5f69666df8a2462950d3822fc3a242f..e61db32dfca57ce286a1fd2cf622e3173ec71a18 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 2112f048d3f3fd2a1b231f8c64bb2a9eedfc92be..fc484503dd7f66d6a981fa0221a642a40a752628 100644 (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;
 }