From c5f45ff56f7538944d92d5d318a01d10da04535c Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Wed, 11 Sep 2024 22:48:12 +0200 Subject: ci: improve no_std testing, add linux arm64 Signed-off-by: Henry Gressmann --- crates/parser/src/module.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/parser') diff --git a/crates/parser/src/module.rs b/crates/parser/src/module.rs index 20ed00d..ff7d109 100644 --- a/crates/parser/src/module.rs +++ b/crates/parser/src/module.rs @@ -168,9 +168,9 @@ impl ModuleReader { validator.end(offset)?; self.end_reached = true; } - CustomSection(reader) => { + CustomSection(_reader) => { debug!("Found custom section"); - debug!("Skipping custom section: {:?}", reader.name()); + debug!("Skipping custom section: {:?}", _reader.name()); } UnknownSection { .. } => return Err(ParseError::UnsupportedSection("Unknown section".into())), section => return Err(ParseError::UnsupportedSection(format!("Unsupported section: {section:?}"))), -- cgit v1.3.1