diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2025-08-01 16:19:15 +0200 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2025-08-01 16:19:15 +0200 |
| commit | 73c136c645460d4f2ea9300864bddc9ad01a6bae (patch) | |
| tree | e0ad9f113f9c191fcda767cdf92094365e1c3227 /examples | |
| parent | 7e98cddcfc1ec31adc668b3044096dc76cc5b358 (diff) | |
chore: clippy, update msrv
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/wasm-rust.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wasm-rust.rs b/examples/wasm-rust.rs index d5a6b2a..82d5c93 100644 --- a/examples/wasm-rust.rs +++ b/examples/wasm-rust.rs @@ -109,7 +109,7 @@ fn hello() -> Result<()> { imports.define( "env", "print_utf8", - Extern::typed_func(|mut ctx: FuncContext<'_>, args: (i64, i32)| { + Extern::typed_func(|ctx: FuncContext<'_>, args: (i64, i32)| { let mem = ctx.exported_memory("memory")?; let ptr = args.0 as usize; let len = args.1 as usize; |
