fix more tingz

This commit is contained in:
2026-02-16 18:50:02 -05:00
parent 78a4ea7a0c
commit a6bf357228
2 changed files with 9 additions and 5 deletions

View File

@@ -827,7 +827,7 @@ parse_filter_expression_string :: proc(request_body: []byte) -> (expr: string, o
// ============================================================================
make_filter_node :: proc() -> ^Filter_Node {
node := make_filter_node()
node := new(Filter_Node)
node.allocator = context.allocator
return node
}