Fix previous commit [acb7f2]
Allow frequency 0 Hz (make check will do agian).
This commit is contained in:
parent
acb7f2cd97
commit
daa58f4125
|
|
@ -215,7 +215,7 @@ dot_ac(char *line, CKTcircuit *ckt, INPtables *tab, struct card *current,
|
||||||
pdef = TRUE;
|
pdef = TRUE;
|
||||||
parm = INPgetValue(ckt, &line, IF_REAL, tab); /* fstart */
|
parm = INPgetValue(ckt, &line, IF_REAL, tab); /* fstart */
|
||||||
startval = parm->rValue;
|
startval = parm->rValue;
|
||||||
if (startval <= 0) {
|
if (startval < 0) {
|
||||||
pdef = TRUE;
|
pdef = TRUE;
|
||||||
startval = parm->rValue = 1.;
|
startval = parm->rValue = 1.;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue