aqhome-tool: fixed return value ("1" stops the calling loop).

This commit is contained in:
Martin Preuss
2025-03-19 23:21:03 +01:00
parent fef6011426
commit ebf9c6eb30

View File

@@ -525,9 +525,9 @@ int AQH_ToolClient_HandleResultMsg(GWEN_UNUSED const AQH_MESSAGE *msg, const GWE
text=AQH_IpcMessageResult_GetText(tagList);
DBG_ERROR(NULL, "ERROR: %d (%s)", result, text?text:"");
return 3;
return GWEN_ERROR_GENERIC;
}
return 0;
return 1;
}