# HG changeset patch # User Olaf Wintermann # Date 1737818868 -3600 # Node ID 60113356a7de15391acc31d95b203eba01acca7f # Parent 7b0bd5e76b5d958182c089fe58fd0d372cff7461 replace cx_strtou32_lc_ with cx_strtou32_lc in json.c diff -r 7b0bd5e76b5d -r 60113356a7de src/json.c --- a/src/json.c Sat Jan 25 16:27:32 2025 +0100 +++ b/src/json.c Sat Jan 25 16:27:48 2025 +0100 @@ -402,7 +402,7 @@ if (i+4 < str.length - 1) { cxstring codepoint_str = { str.ptr + i + 1, 4}; uint32_t codepoint; - if(!cx_strtou32_lc_(codepoint_str, &codepoint, 16, "")) { + if(!cx_strtou32_lc(codepoint_str, &codepoint, 16, "")) { char utf8buf[4]; int utf8len = codepoint_to_utf8(codepoint, utf8buf); if(utf8len > 0) {