]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/term/efi/console.c: Fix compile error.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 18:40:00 +0000 (20:40 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 18:40:00 +0000 (20:40 +0200)
ChangeLog
grub-core/term/efi/console.c

index 04302497f0d4796cb05657ce68bab3dc80e69a05..5b0b357062175491296558fb68c2e6b29f5c4af3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        Compressed HFS+ support.
index 2d6c6f9b94ea059b2070870c49648f9b35579753..9f76d23c0f1f47425d7ce9404ff05949b8c774de 100644 (file)
@@ -86,7 +86,7 @@ grub_console_putchar (struct grub_term_output *term __attribute__ ((unused)),
   j = 1;
   for (i = 0; i < c->ncomb; i++)
     if (c->base < 0xffff)
-      str[j++] = c->combining[i].code;
+      str[j++] = grub_unicode_get_comb (c)[i].code;
   str[j] = 0;
 
   /* Should this test be cached?  */