grub2/0061-util-grub-mkfont.c-argp_parser-Fix-a-typo-which-prev.patch
Peter Jones f74b50e380 Rebase to upstream, fix a pile of bugs. The usual.
Signed-off-by: Peter Jones <pjones@redhat.com>
2013-06-12 15:37:08 -04:00

41 lines
1.2 KiB
Diff

From 601e4870ed17abe682d5581c8ece9adc61184713 Mon Sep 17 00:00:00 2001
From: Vladimir Testov <vladimir.testov@rosalab.ru>
Date: Mon, 10 Dec 2012 11:45:00 +0100
Subject: [PATCH 061/482] * util/grub-mkfont.c (argp_parser): Fix a typo
which prevented --asce from working.
---
ChangeLog | 5 +++++
util/grub-mkfont.c | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 547f739..4204678 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-12-10 Vladimir Testov <vladimir.testov@rosalab.ru>
+
+ * util/grub-mkfont.c (argp_parser): Fix a typo which prevented --asce
+ from working.
+
2012-12-10 Vladimir Serbinenko <phcoder@gmail.com>
* util/getroot.c (convert_system_partition_to_system_disk): Support
diff --git a/util/grub-mkfont.c b/util/grub-mkfont.c
index 4e2c5e4..83fb2d2 100644
--- a/util/grub-mkfont.c
+++ b/util/grub-mkfont.c
@@ -1101,7 +1101,7 @@ argp_parser (int key, char *arg, struct argp_state *state)
arguments->font_info.desc = strtoul (arg, NULL, 0);
break;
- case 'e':
+ case 'c':
arguments->font_info.asce = strtoul (arg, NULL, 0);
break;
--
1.8.2.1