* grub-core/term/efi/console.c: Fix compile error.
This commit is contained in:
parent
8098f65556
commit
e56d9637ae
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/term/efi/console.c: Fix compile error.
|
||||||
|
|
||||||
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Compressed HFS+ support.
|
Compressed HFS+ support.
|
||||||
|
|
|
@ -86,7 +86,7 @@ grub_console_putchar (struct grub_term_output *term __attribute__ ((unused)),
|
||||||
j = 1;
|
j = 1;
|
||||||
for (i = 0; i < c->ncomb; i++)
|
for (i = 0; i < c->ncomb; i++)
|
||||||
if (c->base < 0xffff)
|
if (c->base < 0xffff)
|
||||||
str[j++] = c->combining[i].code;
|
str[j++] = grub_unicode_get_comb (c)[i].code;
|
||||||
str[j] = 0;
|
str[j] = 0;
|
||||||
|
|
||||||
/* Should this test be cached? */
|
/* Should this test be cached? */
|
||||||
|
|
Loading…
Reference in a new issue