diff --git a/ChangeLog b/ChangeLog index 547f73902..420467825 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-12-10 Vladimir Testov + + * util/grub-mkfont.c (argp_parser): Fix a typo which prevented --asce + from working. + 2012-12-10 Vladimir Serbinenko * util/getroot.c (convert_system_partition_to_system_disk): Support diff --git a/util/grub-mkfont.c b/util/grub-mkfont.c index 4e2c5e4cc..83fb2d27b 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;