We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
multi.c
1 parent fd09246 commit c9d3128Copy full SHA for c9d3128
example/multi.c
@@ -121,7 +121,7 @@ int main(int argc, const char* argv[]) {
121
// Call.
122
printf("Calling export...\n");
123
wasm_val_t vals[4] = {
124
- WASM_I32_VAL(1), WASM_I32_VAL(2), WASM_I32_VAL(3), WASM_I32_VAL(4)
+ WASM_I32_VAL(1), WASM_I64_VAL(2), WASM_I64_VAL(3), WASM_I32_VAL(4)
125
};
126
wasm_val_t res[4] = {
127
WASM_INIT_VAL, WASM_INIT_VAL, WASM_INIT_VAL, WASM_INIT_VAL
0 commit comments