diff -r 3106d9ca2f9c -r f3ab28ed22e5 ucx/properties.c --- a/ucx/properties.c Mon Oct 13 21:07:59 2025 +0200 +++ b/ucx/properties.c Mon Oct 13 21:31:58 2025 +0200 @@ -244,7 +244,7 @@ CxMap *map = sink->sink; CxAllocator *alloc = sink->data; cxmutstr v = cx_strdup_a(alloc, value); - int r = cx_map_put_cxstr(map, key, v.ptr); + int r = cxMapPut(map, key, v.ptr); if (r != 0) cx_strfree_a(alloc, &v); return r; }