diff --git a/src/spicelib/devices/ind/CUSPICE/indtopology.c b/src/spicelib/devices/ind/CUSPICE/indtopology.c index 559a76dfe..ab2e0b835 100644 --- a/src/spicelib/devices/ind/CUSPICE/indtopology.c +++ b/src/spicelib/devices/ind/CUSPICE/indtopology.c @@ -57,31 +57,31 @@ INDtopology (GENmodel *inModel, CKTcircuit *ckt, int *i, int *j) { if ((here->INDposNode != 0) && (here->INDbrEq != 0)) { - TopologyMatrixInsert (INDposIbrptr, k, 0, 1, *i) ; + TopologyMatrixInsert (INDposIbrPtr, k, 0, 1, *i) ; (*i)++ ; } if ((here->INDnegNode != 0) && (here->INDbrEq != 0)) { - TopologyMatrixInsert (INDnegIbrptr, k, 0, -1, *i) ; + TopologyMatrixInsert (INDnegIbrPtr, k, 0, -1, *i) ; (*i)++ ; } if ((here->INDbrEq != 0) && (here->INDnegNode != 0)) { - TopologyMatrixInsert (INDibrNegptr, k, 0, -1, *i) ; + TopologyMatrixInsert (INDibrNegPtr, k, 0, -1, *i) ; (*i)++ ; } if ((here->INDbrEq != 0) && (here->INDposNode != 0)) { - TopologyMatrixInsert (INDibrPosptr, k, 0, 1, *i) ; + TopologyMatrixInsert (INDibrPosPtr, k, 0, 1, *i) ; (*i)++ ; } if ((here->INDbrEq != 0) && (here->INDbrEq != 0)) { - TopologyMatrixInsert (INDibrIbrptr, k, 1, -1, *i) ; + TopologyMatrixInsert (INDibrIbrPtr, k, 1, -1, *i) ; (*i)++ ; } diff --git a/src/spicelib/devices/ind/CUSPICE/muttopology.c b/src/spicelib/devices/ind/CUSPICE/muttopology.c index 089d02c86..07b96ff32 100644 --- a/src/spicelib/devices/ind/CUSPICE/muttopology.c +++ b/src/spicelib/devices/ind/CUSPICE/muttopology.c @@ -54,13 +54,13 @@ MUTtopology (GENmodel *inModel, CKTcircuit *ckt, int *i, int *j) { if ((here->MUTind1->INDbrEq != 0) && (here->MUTind2->INDbrEq != 0)) { - TopologyMatrixInsert (MUTbr1br2, k, 0, -1, *i) ; + TopologyMatrixInsert (MUTbr1br2Ptr, k, 0, -1, *i) ; (*i)++ ; } if ((here->MUTind2->INDbrEq != 0) && (here->MUTind1->INDbrEq != 0)) { - TopologyMatrixInsert (MUTbr2br1, k, 0, -1, *i) ; + TopologyMatrixInsert (MUTbr2br1Ptr, k, 0, -1, *i) ; (*i)++ ; }