bug fix, incomplete check for NAN

This commit is contained in:
rlar 2011-07-24 18:30:05 +00:00
parent a3969da827
commit a9aea839b4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-07-24 Robert Larice
* src/spicelib/devices/bsim3soi_dd/b3soiddld.c :
bug fix, incomplete check for NAN
did this `TURKEY' try to fool the poor old man's eyes, who is named `Alberto' ?
2011-07-24 Robert Larice
* src/spicelib/analysis/acan.c ,
* src/spicelib/analysis/dctran.c ,

View File

@ -4241,7 +4241,7 @@ if (here->B3SOIDDdebugMod > 2)
else if ((nandetect = isnan (*(here->B3SOIDDBspPtr))) != 0)
{ strcpy (nanmessage, "BspPtr"); }
if ((nandetect = isnan (*(here->B3SOIDDGgPtr))) != 0)
else if ((nandetect = isnan (*(here->B3SOIDDGgPtr))) != 0)
{ strcpy (nanmessage, "GgPtr"); }
else if ((nandetect = isnan (*(here->B3SOIDDGdpPtr))) != 0)
{ strcpy (nanmessage, "GdpPtr"); }