Remove compiler warning

This commit is contained in:
Holger Vogt 2025-11-05 17:44:48 +01:00
parent 875e269d25
commit 066d26449f
1 changed files with 2 additions and 0 deletions

View File

@ -820,6 +820,8 @@ DEVpred(CKTcircuit *ckt, int loct)
xfact = ckt->CKTdelta/ckt->CKTdeltaOld[1];
return( ( (1+xfact) * *(ckt->CKTstate1+loct) ) -
( xfact * *(ckt->CKTstate2+loct) ) );
#else
return 1.;
#endif /* NEWTRUNC */
}