Browse Source

fix an incorrect prototype

pre-master-46
rlar 16 years ago
parent
commit
04dea78e58
  1. 5
      ChangeLog
  2. 3
      src/frontend/spiceif.c
  3. 2
      src/spicelib/analysis/ckt.h

5
ChangeLog

@ -1,3 +1,8 @@
2010-10-08 Robert Larice
* src/frontend/spiceif.c ,
* src/spicelib/analysis/ckt.h :
fix an incorrect prototype
2010-10-08 Robert Larice
* src/include/inpptree.h ,
* src/spicelib/parser/inpptree.c :

3
src/frontend/spiceif.c

@ -240,7 +240,8 @@ if_run(CKTcircuit *t, char *what, wordlist *args, INPtables *tab)
ft_sperror(err,"deleteTask");
return(2);
}
ft_curckt->ci_specTask = ft_curckt->ci_specOpt = NULL; /*CDHW*/
ft_curckt->ci_specTask = NULL;
ft_curckt->ci_specOpt = NULL; /*CDHW*/
}
/*CDHW Create an interactive task AAA with a new UID.
ci_specTask will point to it CDHW*/

2
src/spicelib/analysis/ckt.h

@ -57,7 +57,7 @@ int CKTnames(CKTcircuit *, int *, IFuid **);
int CKTnewAnal( CKTcircuit *, int , IFuid , void **, void *);
int CKTnewEq( CKTcircuit *, CKTnode **, IFuid );
int CKTnewNode( CKTcircuit *, CKTnode **, IFuid );
int CKTnewTask( CKTcircuit *, void **, IFuid );
int CKTnewTask( CKTcircuit *, void **, IFuid, void**);
IFuid CKTnodName( CKTcircuit *, int );
void CKTnodOut( CKTcircuit *);
CKTnode * CKTnum2nod( CKTcircuit *, int );

Loading…
Cancel
Save