Remove int <--> unsigned int warning

This commit is contained in:
Holger Vogt 2022-01-09 13:49:38 +01:00
parent 83ecfef535
commit 28603eebeb
1 changed files with 1 additions and 1 deletions

View File

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