Skip to content

Commit f9141fb

Browse files
committed
Restyled patch
1 parent c09f01e commit f9141fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/clusters/thermostat-server/thermostat-server.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1720,13 +1720,13 @@ bool emberAfThermostatClusterSetpointRaiseLowerCallback(app::CommandHandler * co
17201720
{
17211721
DesiredCoolingSetpoint = static_cast<int16_t>(CoolingSetpoint + amount * 10);
17221722
CoolLimit = static_cast<int16_t>(DesiredCoolingSetpoint -
1723-
EnforceCoolingSetpointLimits(DesiredCoolingSetpoint, aEndpointId));
1723+
EnforceCoolingSetpointLimits(DesiredCoolingSetpoint, aEndpointId));
17241724
{
17251725
if (OccupiedHeatingSetpoint::Get(aEndpointId, &HeatingSetpoint) == imcode::Success)
17261726
{
17271727
DesiredHeatingSetpoint = static_cast<int16_t>(HeatingSetpoint + amount * 10);
17281728
HeatLimit = static_cast<int16_t>(DesiredHeatingSetpoint -
1729-
EnforceHeatingSetpointLimits(DesiredHeatingSetpoint, aEndpointId));
1729+
EnforceHeatingSetpointLimits(DesiredHeatingSetpoint, aEndpointId));
17301730
{
17311731
if (CoolLimit != 0 || HeatLimit != 0)
17321732
{

0 commit comments

Comments
 (0)