From ea895eebe56c71b3a880766f7b48b815cb1cb83e Mon Sep 17 00:00:00 2001 From: Henry Date: Sun, 12 Apr 2026 21:45:10 +0200 Subject: test: fix rust warm example build Signed-off-by: Henry --- crates/parser/src/module.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/parser/src/module.rs') 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:?}"))), -- cgit v1.3.1