diff --git a/ChangeLog b/ChangeLog index 95b4f7679..6f5ae1f0b 100644 --- a/ChangeLog +++ b/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 : diff --git a/src/spicelib/devices/hisim2/hsm2noi.c b/src/spicelib/devices/hisim2/hsm2noi.c index 4ed728d91..4f8d5713e 100644 --- a/src/spicelib/devices/hisim2/hsm2noi.c +++ b/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; }