cargo fmt fixes

Signed-off-by: Thierry Marianne <thierry@marianne.io>
This commit is contained in:
Thierry Marianne
2026-03-04 14:04:47 +01:00
parent ed59aa05b0
commit 4bd0ff0fcb
2 changed files with 2 additions and 2 deletions

View File

@@ -5131,7 +5131,8 @@ impl Machine {
self.machine_st.heap.allocate_cstr(valid_str)
),
Err(_) => {
let cells: Vec<_> = cstr.to_bytes()
let cells: Vec<_> = cstr
.to_bytes()
.iter()
.map(|&b| fixnum_as_cell!(Fixnum::build_with(b)))
.collect();