remove 'potentially uninitialized' warning

This commit is contained in:
Holger Vogt 2019-11-03 11:10:44 +01:00
parent 9dbdab5a90
commit c2eb86f44f
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ static int
INPparseNumMod(CKTcircuit *ckt, INPmodel *model, INPtables *tab, char **errMessage)
{
struct card *txtCard; /* Text description of a card */
GENcard *tmpCard; /* Processed description of a card */
GENcard *tmpCard = NULL; /* Processed description of a card */
IFcardInfo *info = NULL; /* Info about the type of card located */
char *cardName = NULL; /* name of a card */
int cardNum = 0; /* number of this card in the overall line */