aqhome-react: fixed typo.

This commit is contained in:
Martin Preuss
2024-04-20 02:03:49 +02:00
parent f083fb1c00
commit f3c68a8bba

View File

@@ -156,7 +156,7 @@ int _checkState(AQHREACT_UNIT *unit)
newState=(doubleData>0.0)?1:0;
DBG_DEBUG(NULL, "Got dataObject (%f), new state is %d (previously: %d)", doubleData, newState, xunit->lastProcessedState);
if (newState!=xunit->lastProcessedState) {
DBG_INFO(NULL, "Stage changed (%d->%d)", xunit->lastProcessedState, newState);
DBG_INFO(NULL, "State changed (%d->%d)[%f]", xunit->lastProcessedState, newState, doubleData);
_startTimer(unit, xunit, newState);
result=1;
}