* grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.

(readkey): Likewise.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-08-25 22:32:17 +02:00
parent 8ecbb72dee
commit e35e46fce1
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View 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;