Formatting changes.

This commit is contained in:
Michael Mikovsky
2026-04-25 13:43:19 -06:00
parent 9895248bbf
commit 3e764610eb
4 changed files with 15 additions and 12 deletions
+3 -1
View File
@@ -99,7 +99,9 @@ pub fn run_forward_call_receive(iterations: usize) -> usize {
.as_ref()
.map(|(route, frame)| route_value(*route).wrapping_add(frame.len()))
.unwrap_or_default();
checksum = checksum.wrapping_add(forwarded).wrapping_add(outcome.dropped as usize);
checksum = checksum
.wrapping_add(forwarded)
.wrapping_add(outcome.dropped as usize);
}
black_box(checksum)
}