Skip to content

Commit 98af41b

Browse files
committed
Fix indentation in fuzz_target utils
1 parent ce382c0 commit 98af41b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fuzz/fuzz_targets/msg_targets/utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#[allow(dead_code)]
44
#[inline]
55
pub fn slice_to_be16(v: &[u8]) -> u16 {
6-
((v[0] as u16) << 8*1) |
7-
((v[1] as u16) << 8*0)
6+
((v[0] as u16) << 8*1) |
7+
((v[1] as u16) << 8*0)
88
}
99

1010
#[macro_export]

0 commit comments

Comments
 (0)