INPparseNumMod(), #10/14, don't fall through into the 'default:'
instead, duplicate the code of the 'default:' and break
This commit is contained in:
parent
6b305744d9
commit
521fd16c11
|
|
@ -376,7 +376,9 @@ INPparseNumMod( CKTcircuit* ckt, INPmodel *model, INPtables *tab, char **errMess
|
|||
}
|
||||
cardType = lastType;
|
||||
while (*line == '+') line++; /* Skip leading '+'s */
|
||||
/* FALL THRU when continuing a card */
|
||||
lastType = cardType;
|
||||
// cardType is not used downwards from here
|
||||
break;
|
||||
default:
|
||||
lastType = cardType;
|
||||
// cardType is not used downwards from here
|
||||
|
|
|
|||
Loading…
Reference in New Issue