Fix indentation in fuzz_target utils
authorMatt Corallo <git@bluematt.me>
Sun, 13 May 2018 17:22:43 +0000 (13:22 -0400)
committerMatt Corallo <git@bluematt.me>
Sun, 13 May 2018 17:23:22 +0000 (13:23 -0400)
fuzz/fuzz_targets/msg_targets/utils.rs

index cb4de5eb95441a269608efb216a7db025d7d33f9..cfe5a10e9b0896e91a861052e13f458c6abe79a8 100644 (file)
@@ -3,8 +3,8 @@
 #[allow(dead_code)]
 #[inline]
 pub fn slice_to_be16(v: &[u8]) -> u16 {
-         ((v[0] as u16) << 8*1) |
-                         ((v[1] as u16) << 8*0)
+       ((v[0] as u16) << 8*1) |
+       ((v[1] as u16) << 8*0)
 }
 
 #[macro_export]