From e224bffd088aae74590d3ce0d46550b341c4e34e Mon Sep 17 00:00:00 2001 From: Magne Tenstad <46494695+magnetenstad@users.noreply.github.com> Date: Sat, 2 Dec 2023 06:23:09 +0100 Subject: [PATCH] Update instance.c --- interpreter/src/wasm/instance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreter/src/wasm/instance.c b/interpreter/src/wasm/instance.c index d910d545..733acf5e 100644 --- a/interpreter/src/wasm/instance.c +++ b/interpreter/src/wasm/instance.c @@ -4,7 +4,7 @@ #include "vm.h" #include -static_assert(sizeof(ovm_value_t) == sizeof(wasm_val_t)); +static_assert(sizeof(ovm_value_t) == sizeof(wasm_val_t), "Size of ovm_value_t should match size of wasm_val_t"); typedef struct wasm_ovm_binding wasm_ovm_binding; struct wasm_ovm_binding { -- 2.25.1