summaryrefslogtreecommitdiff
path: root/src/wasm-binary-reader.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-binary-reader.c')
-rw-r--r--src/wasm-binary-reader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-binary-reader.c b/src/wasm-binary-reader.c
index fa3fec86..21b2169d 100644
--- a/src/wasm-binary-reader.c
+++ b/src/wasm-binary-reader.c
@@ -783,7 +783,7 @@ static WasmResult logging_begin_global(uint32_t index,
LoggingContext* ctx = user_data;
LOGF("begin_global(index: %u, type: %s, mutable: %s)\n", index,
wasm_get_type_name(type), mutable_ ? "true" : "false");
- FORWARD(begin_global, index, mutable_, type);
+ FORWARD(begin_global, index, type, mutable_);
}
static WasmResult logging_on_export(uint32_t index,