# HG changeset patch # User Olaf Wintermann # Date 1765398177 -3600 # Node ID 1d7d241479611d91e8c3a24e4498578adf2d6214 # Parent 9102a53c538559998226ce4b774dfd8589289881 fix client build diff -r 9102a53c5385 -r 1d7d24147961 client/uiclient.c --- a/client/uiclient.c Wed Dec 10 19:04:46 2025 +0100 +++ b/client/uiclient.c Wed Dec 10 21:22:57 2025 +0100 @@ -83,7 +83,7 @@ /* * This message callback is executed in the message handler input thread */ -void client_msg_received(cxmutstr msg) { +void client_msg_received(cxstring msg) { // parse message CxJson json; cxJsonInit(&json, NULL); @@ -182,7 +182,7 @@ if(!obj_id.ptr) { return 1; } - if(!id) { + if(!id.ptr) { return 1; } diff -r 9102a53c5385 -r 1d7d24147961 client/uiclient.h --- a/client/uiclient.h Wed Dec 10 19:04:46 2025 +0100 +++ b/client/uiclient.h Wed Dec 10 21:22:57 2025 +0100 @@ -48,7 +48,7 @@ void client_init(UiMessageHandler *handler); -void client_msg_received(cxmutstr msg); +void client_msg_received(cxstring msg); int client_handle_json(UiObject *obj, const CxJsonValue *value);