]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 25 Aug 2010 20:32:17 +0000 (22:32 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 25 Aug 2010 20:32:17 +0000 (22:32 +0200)
(readkey): Likewise.

ChangeLog
grub-core/term/ieee1275/ofconsole.c

index 1f4f3359e93c9ba48df110f69aaa8fd93d251b93..e46c027b08bb0971e95b9207b10bc5a6fc19bab7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-25  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.
+       (readkey): Likewise.
+
 2010-08-25  BVK Chaitanya  <bvk.groups@gmail.com>
 
        Multiple variable names support to "export" command.
index 604906ceb6690d285389e9ce931574d3cd71e45e..9ec85631bf6f7b4c1ea4e0296b2b45e925717f7c 100644 (file)
@@ -55,7 +55,7 @@ static struct color colors[] =
   };
 
 static void
-put (const int c)
+put (struct grub_term_output *term __attribute__ ((unused)), const int c)
 {
   char chr = c;
 
@@ -63,7 +63,7 @@ put (const int c)
 }
 
 static int
-readkey (void)
+readkey (struct grub_term_input *term __attribute__ ((unused)))
 {
   grub_uint8_t c;
   grub_ssize_t actual = 0;