From 8babf0ff44bad2c18b7d5403cb1336e38b6bf15b Mon Sep 17 00:00:00 2001 From: rlar Date: Mon, 9 Aug 2010 18:26:51 +0000 Subject: [PATCH] bug fix, incorrect indirection level, yet without consequence --- ChangeLog | 5 +++++ src/spicelib/analysis/cktmapn.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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;