summaryrefslogtreecommitdiff
path: root/crates/parser/src/module.rs
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2025-05-06 20:14:50 +0200
committerHenry Gressmann <mail@henrygressmann.de>2025-05-06 20:14:50 +0200
commit0f3581ef8fdb55ad21fdfd132eaefadaec242f85 (patch)
tree2d9140bcadd0ef0c24aed3b397eb03cf5950abc6 /crates/parser/src/module.rs
parente1b76386b7e323054d5e8844366ebad86bba693e (diff)
chore: update deps, update nightly
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/src/module.rs')
-rw-r--r--crates/parser/src/module.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/module.rs b/crates/parser/src/module.rs
index 0e17ad9..3a3becd 100644
--- a/crates/parser/src/module.rs
+++ b/crates/parser/src/module.rs
@@ -125,7 +125,7 @@ impl ModuleReader {
self.code_type_addrs = reader.into_iter().map(|f| Ok(f?)).collect::<Result<Vec<_>>>()?;
}
CodeSectionStart { count, range, .. } => {
- debug!("Found code section ({} functions)", count);
+ debug!("Found code section ({count} functions)");
if !self.code.is_empty() {
return Err(ParseError::DuplicateSection("Code section".into()));
}