Skip to content

Commit 5e79764

Browse files
authored
Cargo fmt
Signed-off-by: Jiahao XU <[email protected]>
1 parent 916b6e8 commit 5e79764

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

crates/compression-codecs/src/gzip/header.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ fn consume_cstr(crc: &mut Crc, input: &mut PartialBuffer<&[u8]>) -> Option<()> {
7878
}
7979

8080
impl Parser {
81-
pub(super) fn input(&mut self, crc: &mut Crc, input: &mut PartialBuffer<&[u8]>) -> io::Result<Option<Header>> {
81+
pub(super) fn input(
82+
&mut self,
83+
crc: &mut Crc,
84+
input: &mut PartialBuffer<&[u8]>,
85+
) -> io::Result<Option<Header>> {
8286
loop {
8387
match &mut self.state {
8488
State::Fixed(data) => {

0 commit comments

Comments
 (0)