]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-mkfont.c (argp_parser): Fix a typo which prevented --asce
authorVladimir Testov <vladimir.testov@rosalab.ru>
Mon, 10 Dec 2012 10:45:00 +0000 (11:45 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 10 Dec 2012 10:45:00 +0000 (11:45 +0100)
from working.

ChangeLog
util/grub-mkfont.c

index 547f739021cb6fe3650d70a18af301690ab6c525..4204678254af23f7bf4b720ae0d259ef8e33aa39 100644 (file)
--- 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
index 4e2c5e4cc68d7b7be0bf5e064cf78e99cd583e06..83fb2d27b9fb6c1bbf461ee80908d2afac6865be 100644 (file)
@@ -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;