diff --git a/ChangeLog b/ChangeLog index 3074a6f7e..49f21c8c7 100644 --- a/ChangeLog +++ b/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 diff --git a/src/spicelib/analysis/cktmapn.c b/src/spicelib/analysis/cktmapn.c index 1c4c82032..fd09ab8b7 100644 --- a/src/spicelib/analysis/cktmapn.c +++ b/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;