Index: firmware/App/Controllers/Ultrafiltration.c =================================================================== diff -u -rc90f3d61bde2a2b47d1048635be4dadf282e2195 -r87ee9712a928c58e3fe8b456bce567df0c6a2038 --- firmware/App/Controllers/Ultrafiltration.c (.../Ultrafiltration.c) (revision c90f3d61bde2a2b47d1048635be4dadf282e2195) +++ firmware/App/Controllers/Ultrafiltration.c (.../Ultrafiltration.c) (revision 87ee9712a928c58e3fe8b456bce567df0c6a2038) @@ -244,14 +244,14 @@ { if ( ( ++currentUFCompCounter >= UF_COMP_INTERVAL ) || ( TRUE == isUFRateUpdated ) ) { - F32 freshDensity = 0.0F; - F32 spentDensity = 0.0F; - F32 compFreshFlowrate = 0.0F; - F32 compSpentFlowrate = 0.0F; - F32 balancingError = 0.0F; + F32 freshDensity; + F32 spentDensity; + F32 compFreshFlowrate; + F32 compSpentFlowrate; + F32 balancingError; // Fresh side dialysate density - if ( getTestConfigStatus( TEST_CONFIG_DD_FP_ENABLE_BETA_1_0_HW ) == TRUE ) + if ( TRUE == getTestConfigStatus( TEST_CONFIG_DD_FP_ENABLE_BETA_1_0_HW ) ) { freshDensity = ( COMP_SLOPE * getFilteredTemperatureValue( D4_TEMP ) ) + COMP_INTERCEPT; }