summaryrefslogtreecommitdiff
path: root/examples/wasm-rust.rs
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-09-11 22:51:30 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-09-11 22:51:30 +0200
commitc34f696794d42b194e44ec0d32f20f457b36e320 (patch)
treeb2733b7e1472972557c31c342fe2af2b951a8e9f /examples/wasm-rust.rs
parentc5f45ff56f7538944d92d5d318a01d10da04535c (diff)
ci: fix build
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'examples/wasm-rust.rs')
-rw-r--r--examples/wasm-rust.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wasm-rust.rs b/examples/wasm-rust.rs
index a9c7572..89203c1 100644
--- a/examples/wasm-rust.rs
+++ b/examples/wasm-rust.rs
@@ -82,7 +82,7 @@ fn tinywasm() -> Result<()> {
}
fn tinywasm_no_std() -> Result<()> {
- let module = Module::parse_file("./examples/rust/out/tinywasm_no_std.opt.wasm")?;
+ let module = Module::parse_file("./examples/rust/out/tinywasm_no_std.wasm")?;
let mut store = Store::default();
let mut imports = Imports::new();