From a33fa316b0efa8858eb855d061e99cbf24704873 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 15 Apr 2022 21:20:03 +0300 Subject: [PATCH] ci: fix code_test.v --- vlib/v/tests/c_function_mut_param/code.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/c_function_mut_param/code.c b/vlib/v/tests/c_function_mut_param/code.c index d233a68851..bd778d7868 100644 --- a/vlib/v/tests/c_function_mut_param/code.c +++ b/vlib/v/tests/c_function_mut_param/code.c @@ -1,3 +1,3 @@ -void mut_arg(const byte *_key, size_t *val) { +void mut_arg(const u8 *_key, size_t *val) { *val = 5; }