mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-07 11:04:48 +00:00
* grub-core/term/ieee1275/ofconsole.c (put): Correct prototype.
(readkey): Likewise.
This commit is contained in:
parent
8ecbb72dee
commit
e35e46fce1
@ -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>
|
2010-08-25 BVK Chaitanya <bvk.groups@gmail.com>
|
||||||
|
|
||||||
Multiple variable names support to "export" command.
|
Multiple variable names support to "export" command.
|
||||||
|
@ -55,7 +55,7 @@ static struct color colors[] =
|
|||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
put (const int c)
|
put (struct grub_term_output *term __attribute__ ((unused)), const int c)
|
||||||
{
|
{
|
||||||
char chr = c;
|
char chr = c;
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ put (const int c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
readkey (void)
|
readkey (struct grub_term_input *term __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
grub_uint8_t c;
|
grub_uint8_t c;
|
||||||
grub_ssize_t actual = 0;
|
grub_ssize_t actual = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user