diff --git a/crates/lightbeam/src/function_body.rs b/crates/lightbeam/src/function_body.rs index 5d5420d037..cd7294b32e 100644 --- a/crates/lightbeam/src/function_body.rs +++ b/crates/lightbeam/src/function_body.rs @@ -515,8 +515,9 @@ where let new_cc = block.calling_convention.clone(); if !(cc.is_none() || cc == new_cc) { - return Err(Error::Microwasm("Can't pass different params to different elements of `br_table` \ - yet".to_string())); + return Err(Error::Microwasm( + "Can't pass different params to different elements of `br_table` yet" + .to_string())); } cc = new_cc; }