Browse Source

Fix the error message when fatal model parameter fail occurs

pre-master-46
Holger Vogt 5 years ago
parent
commit
49890fe302
  1. 3
      src/spicelib/devices/bsim4v5/b4v5temp.c

3
src/spicelib/devices/bsim4v5/b4v5temp.c

@ -1821,7 +1821,8 @@ int Size_Not_Found, i;
if (BSIM4v5checkModel(model, here, ckt))
{
SPfrontEnd->IFerrorf (ERR_FATAL, "Fatal error(s) detected during BSIM4v5.5.0 parameter checking for %s in model %s", model->BSIM4v5modName, here->BSIM4v5name);
SPfrontEnd->IFerrorf (ERR_FATAL,
"detected during BSIM4v5.5.0 parameter checking for \n model %s of device instance %s\n", model->BSIM4v5modName, here->BSIM4v5name);
return(E_BADPARM);
}
} /* End instance */

Loading…
Cancel
Save