aqhome, aqhomed: Adapted to latest changes.

This commit is contained in:
Martin Preuss
2023-03-28 21:42:28 +02:00
parent 99aacd5e85
commit 8d89d7a1a3
4 changed files with 11 additions and 10 deletions

View File

@@ -73,7 +73,7 @@ void AQH_ForwardIpcMsg_DumpToBuffer(const GWEN_MSG *msg, GWEN_BUFFER *dbuf, cons
GWEN_IpcMsg_GetProtoId(msg),
GWEN_IpcMsg_GetProtoVersion(msg));
if (ptr && len) {
GWEN_Text_DumpString2Buffer(ptr, len, dbuf, 2);
GWEN_Text_DumpString2Buffer((const char*)ptr, len, dbuf, 2);
GWEN_Buffer_AppendByte(dbuf, '\n');
}
}