Remove int <--> unsigned int warning
This commit is contained in:
parent
83ecfef535
commit
28603eebeb
|
|
@ -40,7 +40,7 @@ int VSRCgetActivePortNodes(GENmodel* inModel, CKTcircuit* ckt, int* posNodes, in
|
||||||
{
|
{
|
||||||
if (!(ckt->CKTmode & MODESP))
|
if (!(ckt->CKTmode & MODESP))
|
||||||
return (OK);
|
return (OK);
|
||||||
for (int n = 0; n < ckt->CKTportCount; n++)
|
for (unsigned int n = 0; n < ckt->CKTportCount; n++)
|
||||||
posNodes[n] = negNodes[n] = 0;
|
posNodes[n] = negNodes[n] = 0;
|
||||||
VSRCmodel* model = (VSRCmodel*)inModel;
|
VSRCmodel* model = (VSRCmodel*)inModel;
|
||||||
VSRCinstance* here;
|
VSRCinstance* here;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue