f74b50e380
Signed-off-by: Peter Jones <pjones@redhat.com>
42 lines
1.2 KiB
Diff
42 lines
1.2 KiB
Diff
From f7c5895ae7757d790c3c0efea514523775b50c66 Mon Sep 17 00:00:00 2001
|
|
From: Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
|
|
Date: Tue, 7 May 2013 20:40:00 +0200
|
|
Subject: [PATCH 463/482] * grub-core/term/efi/console.c: Fix compile
|
|
error.
|
|
|
|
---
|
|
ChangeLog | 4 ++++
|
|
grub-core/term/efi/console.c | 2 +-
|
|
2 files changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/ChangeLog b/ChangeLog
|
|
index 0430249..5b0b357 100644
|
|
--- a/ChangeLog
|
|
+++ b/ChangeLog
|
|
@@ -1,5 +1,9 @@
|
|
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.
|
|
|
|
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
|
|
diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
|
|
index 2d6c6f9..9f76d23 100644
|
|
--- a/grub-core/term/efi/console.c
|
|
+++ b/grub-core/term/efi/console.c
|
|
@@ -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? */
|
|
--
|
|
1.8.2.1
|
|
|