* 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
|
@ -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 a new issue