drop dead nested assignment (trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4468 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-07-26 15:11:53 +00:00 committed by Stefan Reinauer
parent fc4226c563
commit 4551b4961a
1 changed files with 1 additions and 3 deletions

View File

@ -254,14 +254,12 @@ int add_handler(struct rom *rom, int argc, char **argv)
return -1;
}
int component_type;
/* There are two ways to specify the type - a string or a number */
if (isdigit(*(argv[2])))
type = strtoul(argv[2], 0, 0);
else {
switch( component_type = select_component_type(argv[2])) {
switch(select_component_type(argv[2])) {
case 0:
type = CBFS_COMPONENT_STAGE;
break;