Browse Source

bug fix, incorrect indirection level, yet without consequence

pre-master-46
rlar 16 years ago
parent
commit
8babf0ff44
  1. 5
      ChangeLog
  2. 2
      src/spicelib/analysis/cktmapn.c

5
ChangeLog

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

2
src/spicelib/analysis/cktmapn.c

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

Loading…
Cancel
Save