From: Kevin O'Connor Date: Tue, 25 Apr 2017 17:04:41 +0000 (-0400) Subject: boot: Increase description size in boot menu X-Git-Tag: rel-1.10.3~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6055583af71d0941848337d33eb0b720a5f90a8b;p=seabios.git boot: Increase description size in boot menu Increase the boot menu description size so that menu items up to 80 characters display without truncation. Reported-by: Rene Shuster Signed-off-by: Kevin O'Connor (cherry picked from commit 6f090f868dcdc089a669b3664f9564ef8f65d0ea) --- diff --git a/src/boot.c b/src/boot.c index 706b7df..59623fb 100644 --- a/src/boot.c +++ b/src/boot.c @@ -482,7 +482,7 @@ interactive_bootmenu(void) int maxmenu = 0; struct bootentry_s *pos; hlist_for_each_entry(pos, &BootList, node) { - char desc[60]; + char desc[77]; maxmenu++; printf("%d. %s\n", maxmenu , strtcpy(desc, pos->description, ARRAY_SIZE(desc)));