From 99cb46943fc7eb796f447f6496990f9a04bbb403 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 22 Jan 2007 23:56:24 +0000 Subject: [PATCH] "vga=" is specified in decimal, not hex. --- src/arch/i386/image/bzimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/image/bzimage.c b/src/arch/i386/image/bzimage.c index 5ca3aafd..fe640ee8 100644 --- a/src/arch/i386/image/bzimage.c +++ b/src/arch/i386/image/bzimage.c @@ -107,7 +107,7 @@ static int bzimage_parse_cmdline ( struct image *image, } else if ( strcmp ( vga, "ask" ) == 0 ) { exec_ctx->vid_mode = BZI_VID_MODE_ASK; } else { - exec_ctx->vid_mode = strtoul ( vga, &vga, 16 ); + exec_ctx->vid_mode = strtoul ( vga, &vga, 10 ); if ( *vga && ( *vga != ' ' ) ) { DBGC ( image, "bzImage %p strange \"vga=\"" "terminator '%c'\n", image, *vga );