aqhome-tool: fixed a bug.

This commit is contained in:
Martin Preuss
2026-02-02 21:19:53 +01:00
parent 74b4098608
commit c8e5317cac

View File

@@ -235,7 +235,7 @@ int _read8BitValues(const GWEN_STRINGLIST *sl, double *pDouble)
return rv;
}
result<<=8;
result=(((uint32_t) v) & 0xff);
result+=(((uint32_t) v) & 0xff);
}
se=GWEN_StringListEntry_Next(se);
}