david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

8-bit integers are 1 byte long, not 8...

This commit is contained in:
Michael Brown 2006-12-20 05:04:17 +00:00
parent e4f489636f
commit 2b97d2ebc5
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ static int set_int ( struct config_context *context,
static int set_int8 ( struct config_context *context,
struct config_setting *setting,
const char *value ) {
return set_int ( context, setting, value, 8 );
return set_int ( context, setting, value, 1 );
}
/** An 8-bit integer configuration setting */