fix an incorrect prototype

This commit is contained in:
rlar 2010-10-08 16:32:36 +00:00
parent d51c1e1b7d
commit 04dea78e58
3 changed files with 8 additions and 2 deletions

View File

@ -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 :

View File

@ -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*/

View File

@ -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 );