diff --git a/src/machine/system_calls.rs b/src/machine/system_calls.rs index 9b714d01..1766e579 100644 --- a/src/machine/system_calls.rs +++ b/src/machine/system_calls.rs @@ -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(); diff --git a/tests/scryer/issues.rs b/tests/scryer/issues.rs index bedaa9bf..cb321746 100644 --- a/tests/scryer/issues.rs +++ b/tests/scryer/issues.rs @@ -150,4 +150,3 @@ fn http_open_hanging() { "received response with status code:200\nreceived response with status code:200\nreceived response with status code:200\nreceived response with status code:200\nreceived response with status code:200\n" ); } -