Skip to content

Commit ec3bd87

Browse files
committed
Apply rustfmt
1 parent 1b80cbd commit ec3bd87

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: src/gzip.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,7 @@ impl Header {
400400
));
401401
}
402402
let flags = buf[3];
403-
this.modification_time =
404-
u32::from_le_bytes([buf[4], buf[5], buf[6], buf[7]]);
403+
this.modification_time = u32::from_le_bytes([buf[4], buf[5], buf[6], buf[7]]);
405404
this.compression_level = CompressionLevel::from_u8(buf[8]);
406405
this.os = Os::from_u8(buf[9]);
407406
if flags & F_EXTRA != 0 {

0 commit comments

Comments
 (0)