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:
parent
fc4226c563
commit
4551b4961a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue