From: Erwan Velu Date: Thu, 26 Nov 2009 19:14:18 +0000 (+0100) Subject: hdt: Fixing typo in variable's name X-Git-Tag: syslinux-3.84-pre6~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b74afd77bc99b65021c7b10d6298bbeff888b09;p=platform%2Fupstream%2Fsyslinux.git hdt: Fixing typo in variable's name Impact: Building is working again Ooops .... --- diff --git a/com32/hdt/hdt-common.c b/com32/hdt/hdt-common.c index 5c3ab66..75c30b9 100644 --- a/com32/hdt/hdt-common.c +++ b/com32/hdt/hdt-common.c @@ -90,7 +90,7 @@ void detect_parameters(const int argc, const char *argv[], convert_isolinux_filename(hardware->reboot_label, hardware); } else if (!strncmp(argv[i], "vesa", 4)) { vesamode = true; - max_console_lines = CLI_VESA_MAX_LINES; + max_console_lines = MAX_CLI_LINES; /* If the user defines a background image */ if (!strncmp(argv[i], "vesa=", 5)) { strncpy(hardware->vesa_background, argv[i] + 5, @@ -98,7 +98,7 @@ void detect_parameters(const int argc, const char *argv[], } } else if (!strncmp(argv[i], "novesa", 6)) { vesamode = false; - max_console_lines = CLI_MAX_LINES; + max_console_lines = MAX_VESA_CLI_LINES; } else if (!strncmp(argv[i], "auto=", 5)) { /* The auto= parameter is separated in several argv[] * as it can contains spaces.