Skip to content

Commit f3ece48

Browse files
committed
fix: remove unnecessary mut
1 parent a167f76 commit f3ece48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/run.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ impl RunCommand {
180180
// Read the wasm module binary either as `*.wat` or a raw binary.
181181
let module = self.load_module(linker.engine(), &self.module)?;
182182

183-
let mut host = Host::default();
183+
let host = Host::default();
184184
let mut store = Store::new(&engine, host);
185185
populate_with_wasi(
186186
&mut linker,

0 commit comments

Comments
 (0)