src/server/test/strreplace.c

changeset 661
a4e1ba59b733
parent 660
f00d03835dd9
--- a/src/server/test/strreplace.c	Tue Jan 13 18:09:20 2026 +0100
+++ b/src/server/test/strreplace.c	Tue Feb 03 19:09:53 2026 +0100
@@ -201,9 +201,9 @@
     // TODO
 }
 
-static cxmutstr get_var(const CxAllocator *a, StringTemplateSegment *seg, void *userdata, WSBool *free_str) {
+static cxmutstr get_var(const CxAllocator *a, StringTemplateSegment *seg, void *userdata, bool *free_str) {
     cxmutstr var_value = cx_strcat_a(a, CX_NULLSTR, 3, cx_str("var("), seg->str, cx_str(")"));
-    *free_str = TRUE;
+    *free_str = true;
     return var_value;
 }
 

mercurial