* grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.
(readkey): Likewise.
This commit is contained in:
parent
8ecbb72dee
commit
e35e46fce1
2 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue