Browse Source

hisim2, drop (GENERIC **) NULL pointer casts

pre-master-46
rlar 15 years ago
parent
commit
2d4e904963
  1. 4
      ChangeLog
  2. 6
      src/spicelib/devices/hisim2/hsm2noi.c

4
ChangeLog

@ -1,3 +1,7 @@
2011-05-22 Robert Larice
* src/spicelib/devices/hisim2/hsm2noi.c :
hisim2, drop (GENERIC **) NULL pointer casts
2011-05-22 Robert Larice
* src/spicelib/devices/hisim2/hsm2cvtest.c ,
* src/spicelib/devices/hisim2/hsm2ld.c :

6
src/spicelib/devices/hisim2/hsm2noi.c

@ -90,7 +90,7 @@ int HSM2noise (
return(E_NOMEM);
(*(SPfrontEnd->IFnewUid))
(ckt, &(data->namelist[data->numPlots++]),
(IFuid) NULL, name, UID_OTHER, (GENERIC **) NULL);
(IFuid) NULL, name, UID_OTHER, NULL);
}
break;
case INT_NOIZ:
@ -104,7 +104,7 @@ int HSM2noise (
return(E_NOMEM);
(*(SPfrontEnd->IFnewUid))
(ckt, &(data->namelist[data->numPlots++]),
(IFuid) NULL, name, UID_OTHER, (GENERIC **) NULL);
(IFuid) NULL, name, UID_OTHER, NULL);
(void) sprintf(name, "inoise_total.%s%s",
(char *)here->HSM2name, HSM2nNames[i]);
@ -115,7 +115,7 @@ int HSM2noise (
return(E_NOMEM);
(*(SPfrontEnd->IFnewUid))
(ckt, &(data->namelist[data->numPlots++]),
(IFuid) NULL, name, UID_OTHER, (GENERIC **)NULL);
(IFuid) NULL, name, UID_OTHER, NULL);
}
break;
}

Loading…
Cancel
Save