bug fix, incorrect indirection level, yet without consequence
This commit is contained in:
parent
618732c7bd
commit
8babf0ff44
|
|
@ -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
|
2010-08-09 Robert Larice
|
||||||
* src/spicelib/parser/inpgval.c :
|
* src/spicelib/parser/inpgval.c :
|
||||||
fix assignment to a member of union IFvalue
|
fix assignment to a member of union IFvalue
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ CKTmapNode(CKTcircuit *ckt, void **node, IFuid name)
|
||||||
(IFuid) NULL,
|
(IFuid) NULL,
|
||||||
name,
|
name,
|
||||||
UID_SIGNAL,
|
UID_SIGNAL,
|
||||||
(void**)mynode); /* get a uid for it */
|
(void**)&mynode); /* get a uid for it */
|
||||||
if(error) return(error);
|
if(error) return(error);
|
||||||
mynode->name = uid; /* set the info we have */
|
mynode->name = uid; /* set the info we have */
|
||||||
mynode->type = SP_VOLTAGE;
|
mynode->type = SP_VOLTAGE;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue