david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Use base "0" in strtoul for consistency with "mem="

This commit is contained in:
Michael Brown 2007-01-24 22:54:08 +00:00
parent 99cb46943f
commit 6a765fdc15
1 changed files with 1 additions and 1 deletions

View File

@ -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, 10 );
exec_ctx->vid_mode = strtoul ( vga, &vga, 0 );
if ( *vga && ( *vga != ' ' ) ) {
DBGC ( image, "bzImage %p strange \"vga=\""
"terminator '%c'\n", image, *vga );