From 91c5fe7926eaea52869e7fd8736a515c696e2c57 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 17 Sep 2025 14:46:18 +0200 Subject: [PATCH] Cosmetics: Indentation --- src/spicelib/devices/vsrc/vsrcset.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/spicelib/devices/vsrc/vsrcset.c b/src/spicelib/devices/vsrc/vsrcset.c index e9febf2a7..b539fc493 100644 --- a/src/spicelib/devices/vsrc/vsrcset.c +++ b/src/spicelib/devices/vsrc/vsrcset.c @@ -107,13 +107,13 @@ VSRCunsetup(GENmodel *inModel, CKTcircuit *ckt) VSRCinstance *here; for (model = (VSRCmodel *)inModel; model != NULL; - model = VSRCnextModel(model)) + model = VSRCnextModel(model)) { for (here = VSRCinstances(model); here != NULL; here=VSRCnextInstance(here)) - { - if (here->VSRCbranch > 0) - CKTdltNNum(ckt, here->VSRCbranch); + { + if (here->VSRCbranch > 0) + CKTdltNNum(ckt, here->VSRCbranch); here->VSRCbranch = 0; #ifdef RFSPICE if ((here->VSRCresNode > 0) & (here->VSRCisPort)) @@ -121,7 +121,7 @@ VSRCunsetup(GENmodel *inModel, CKTcircuit *ckt) here->VSRCresNode = 0; #endif - } + } } return OK; }