bug fix, incorrect indirection level, yet without consequence

This commit is contained in:
rlar 2010-08-09 18:26:51 +00:00
parent 618732c7bd
commit 8babf0ff44
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-08-09 Robert Larice
* src/spicelib/analysis/cktmapn.c :
bug fix, incorrect indirection level, yet without consequence,
function CKTmapNode() is unused.
2010-08-09 Robert Larice
* src/spicelib/parser/inpgval.c :
fix assignment to a member of union IFvalue

View File

@ -40,7 +40,7 @@ CKTmapNode(CKTcircuit *ckt, void **node, IFuid name)
(IFuid) NULL,
name,
UID_SIGNAL,
(void**)mynode); /* get a uid for it */
(void**)&mynode); /* get a uid for it */
if(error) return(error);
mynode->name = uid; /* set the info we have */
mynode->type = SP_VOLTAGE;