diff options
Diffstat (limited to 'wasm2c/examples/rot13/main.c')
-rw-r--r-- | wasm2c/examples/rot13/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wasm2c/examples/rot13/main.c b/wasm2c/examples/rot13/main.c index 8081f697..7348d005 100644 --- a/wasm2c/examples/rot13/main.c +++ b/wasm2c/examples/rot13/main.c @@ -62,7 +62,7 @@ int main(int argc, char** argv) { /* Create a `host` module instance to store the memory and current string */ struct Z_host_instance_t host_instance; /* Allocate 1 page of wasm memory (64KiB). */ - wasm_rt_allocate_memory(&host_instance.memory, 1, 1); + wasm_rt_allocate_memory(&host_instance.memory, 1, 1, false); /* Construct the module instance */ Z_rot13_instantiate(&rot13_instance, &host_instance); |