Skip to content

Commit ef1b8ed

Browse files
committed
cargo fmt decoder.rs
Signed-off-by: Jiahao XU <[email protected]>
1 parent 666fb8d commit ef1b8ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/compression-codecs/src/bzip2/decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ impl Decode for BzDecoder {
106106
output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>,
107107
) -> io::Result<bool> {
108108
match self.decode(&mut PartialBuffer::new(&[][..]), output)? {
109-
Status::Ok | Status::FlushOk | Status::RunOk | Status::FinishOk => Ok(false),
109+
Status::Ok | Status::FlushOk | Status::RunOk | Status::FinishOk => Ok(false),
110110
Status::StreamEnd => Ok(true),
111111
Status::MemNeeded => Err(io::ErrorKind::OutOfMemory.into()),
112112
}

0 commit comments

Comments
 (0)