use the type JOB, remove redundant casts
This commit is contained in:
parent
74d62ab486
commit
d49b1d7d0b
17
ChangeLog
17
ChangeLog
|
|
@ -1,3 +1,20 @@
|
|||
2010-10-08 Robert Larice
|
||||
* src/frontend/outitf.c ,
|
||||
* src/frontend/outitf.h ,
|
||||
* src/frontend/spiceif.c ,
|
||||
* src/include/ifsim.h ,
|
||||
* src/main.c ,
|
||||
* src/spicelib/analysis/acan.c ,
|
||||
* src/spicelib/analysis/cktsens.c ,
|
||||
* src/spicelib/analysis/dcop.c ,
|
||||
* src/spicelib/analysis/dctran.c ,
|
||||
* src/spicelib/analysis/dctrcurv.c ,
|
||||
* src/spicelib/analysis/distoan.c ,
|
||||
* src/spicelib/analysis/noisean.c ,
|
||||
* src/spicelib/analysis/pzan.c ,
|
||||
* src/spicelib/analysis/tfanal.c :
|
||||
use the type JOB, remove redundant casts
|
||||
|
||||
2010-10-08 Robert Larice
|
||||
* src/frontend/shyu.c ,
|
||||
* src/frontend/spiceif.c ,
|
||||
|
|
|
|||
|
|
@ -1532,7 +1532,7 @@ do {\
|
|||
(*(SPfrontEnd->IFnewUid))(ckt,&timeUid,(IFuid)NULL,
|
||||
"time", UID_OTHER, NULL);
|
||||
error = (*(SPfrontEnd->OUTpBeginPlot))(ckt,
|
||||
(void*)ckt->CKTcurJob,
|
||||
ckt->CKTcurJob,
|
||||
ckt->CKTcurJob->JOBname,timeUid,IF_REAL,numNames,nameList,
|
||||
IF_REAL,&(((TRANan*)ckt->CKTcurJob)->TRANplot));
|
||||
if(error) {
|
||||
|
|
|
|||
|
|
@ -439,12 +439,12 @@ struct IFfrontEnd {
|
|||
/* what time is it? */
|
||||
int (*IFerror) (int, char *, IFuid *);
|
||||
/* output an error or warning message */
|
||||
int (*OUTpBeginPlot) (CKTcircuit *, void *, IFuid, IFuid, int,
|
||||
int (*OUTpBeginPlot) (CKTcircuit *, JOB *, IFuid, IFuid, int,
|
||||
int, IFuid *, int, void **);
|
||||
/* start pointwise output plot */
|
||||
int (*OUTpData) (void *, IFvalue *, IFvalue *);
|
||||
/* data for pointwise plot */
|
||||
int (*OUTwBeginPlot) (CKTcircuit *, void *, IFuid, IFuid, int,
|
||||
int (*OUTwBeginPlot) (CKTcircuit *, JOB *, IFuid, IFuid, int,
|
||||
int, IFuid *, int, void **);
|
||||
/* start windowed output plot */
|
||||
int (*OUTwReference) (void *, IFvalue *, void **);
|
||||
|
|
|
|||
Loading…
Reference in New Issue