summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-04-12 21:45:10 +0200
committerHenry <mail@henrygressmann.de>2026-04-12 21:45:10 +0200
commitea895eebe56c71b3a880766f7b48b815cb1cb83e (patch)
tree42a0548d77e27d6624bcbb85274aaa5b086cacc5 /crates
parentf07578bf9f12d7760c768f3bb6fe0861baf27c6a (diff)
test: fix rust warm example build
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/parser/src/module.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/parser/src/module.rs b/crates/parser/src/module.rs
index 8405c6d..b53dfd6 100644
--- a/crates/parser/src/module.rs
+++ b/crates/parser/src/module.rs
@@ -158,9 +158,9 @@ impl ModuleReader {
validator.end(offset)?;
self.end_reached = true;
}
- Payload::CustomSection(reader) => {
+ Payload::CustomSection(_reader) => {
debug!("Found custom section");
- debug!("Skipping custom section: {:?}", reader.name());
+ debug!("Skipping custom section: {:?}", _reader.name());
}
Payload::UnknownSection { .. } => return Err(ParseError::UnsupportedSection("Unknown section".into())),
section => return Err(ParseError::UnsupportedSection(format!("Unsupported section: {section:?}"))),