From 9fb3337d59db1face71625ee5e3538253b35a279 Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Tue, 3 May 2022 07:46:41 +0300 Subject: [PATCH] change value_get name --- struct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struct.c b/struct.c index e93b28b..8323995 100644 --- a/struct.c +++ b/struct.c @@ -33,7 +33,7 @@ uint value_offset(struct cu_struct_s* st, uint idx, const void* in) return offset; } -void value_value(struct cu_struct_s* st, uint idx, const void* in, void* out) +void value_get(struct cu_struct_s* st, uint idx, const void* in, void* out) { uint size = value_size(st, idx, in); uint offset = value_offset(st, idx, in);