From c8e5317caca602d0731d5c8eb949d514efa90f13 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Mon, 2 Feb 2026 21:19:53 +0100 Subject: [PATCH] aqhome-tool: fixed a bug. --- apps/aqhome-tool/data/setdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/aqhome-tool/data/setdata.c b/apps/aqhome-tool/data/setdata.c index 5445a40..8116dcc 100644 --- a/apps/aqhome-tool/data/setdata.c +++ b/apps/aqhome-tool/data/setdata.c @@ -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); }