correct the step incrementing type to SENS_LINEAR

This commit is contained in:
dwarning 2013-11-03 18:40:41 +01:00 committed by rlar
parent 3c49c4eb8f
commit 5bc8429b2f
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ int sens_sens(CKTcircuit *ckt, int restart)
double
inc_freq(double freq, int type, double step_size)
{
if (type != LINEAR)
if (type != SENS_LINEAR)
freq *= step_size;
else
freq += step_size;