diff options
| author | Henry <mail@henrygressmann.de> | 2026-07-22 22:27:37 +0200 |
|---|---|---|
| committer | Henry <mail@henrygressmann.de> | 2026-07-22 22:27:37 +0200 |
| commit | 8bc916ef0afdede9edce6bb9045dc555e4d3b218 (patch) | |
| tree | 7f5e4045144776be084faa4150890f0a11e1fb06 /crates/cli/src/load.rs | |
| parent | b484f2bc074dab2419245ec2443f60efd33b80f0 (diff) | |
fix: dropkeep not being emited correctly
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'crates/cli/src/load.rs')
| -rw-r--r-- | crates/cli/src/load.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/cli/src/load.rs b/crates/cli/src/load.rs index 7e6fc09..9f7c616 100644 --- a/crates/cli/src/load.rs +++ b/crates/cli/src/load.rs @@ -73,7 +73,7 @@ fn load_module_from_bytes(input: &str, bytes: &[u8]) -> Result<LoadedModule> { #[cfg(not(feature = "wat"))] if input != "-" && has_extension(input, "wat") { - bail!("wat support is not enabled in this build") + bail!("wat support is not enabled in this build"); } #[cfg(feature = "wat")] |
