Cosmetics: Indentation

This commit is contained in:
Holger Vogt 2025-09-17 14:46:18 +02:00
parent aadd12965b
commit 91c5fe7926
1 changed files with 5 additions and 5 deletions

View File

@ -107,13 +107,13 @@ VSRCunsetup(GENmodel *inModel, CKTcircuit *ckt)
VSRCinstance *here; VSRCinstance *here;
for (model = (VSRCmodel *)inModel; model != NULL; for (model = (VSRCmodel *)inModel; model != NULL;
model = VSRCnextModel(model)) model = VSRCnextModel(model))
{ {
for (here = VSRCinstances(model); here != NULL; for (here = VSRCinstances(model); here != NULL;
here=VSRCnextInstance(here)) here=VSRCnextInstance(here))
{ {
if (here->VSRCbranch > 0) if (here->VSRCbranch > 0)
CKTdltNNum(ckt, here->VSRCbranch); CKTdltNNum(ckt, here->VSRCbranch);
here->VSRCbranch = 0; here->VSRCbranch = 0;
#ifdef RFSPICE #ifdef RFSPICE
if ((here->VSRCresNode > 0) & (here->VSRCisPort)) if ((here->VSRCresNode > 0) & (here->VSRCisPort))
@ -121,7 +121,7 @@ VSRCunsetup(GENmodel *inModel, CKTcircuit *ckt)
here->VSRCresNode = 0; here->VSRCresNode = 0;
#endif #endif
} }
} }
return OK; return OK;
} }