Commit 10b672c8aaee72f3db76fbf054692a86e9b4b41b

Thomas de Grivel 2023-10-21T15:02:36

fix asan

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/env_test.c b/test/env_test.c
index aabe2f8..ce10e5e 100644
--- a/test/env_test.c
+++ b/test/env_test.c
@@ -41,7 +41,7 @@ TEST_CASE(env_eval_call)
   s_tag expected;
   env_init(&env);
   test_context("env_eval_call(1 + 2) -> 3");
-  call_init_op(&call);
+  call_init(&call);
   call.ident.module = sym_1("C3");
   call.ident.sym = sym_1("operator08");
   call.arguments = list_1("(1, 2)");