Skip to content
Closed
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/codec/bzip2/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@

fn finish(
&mut self,
_output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>,
output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>,
) -> io::Result<bool> {
Ok(true)
Ok(self.decode(&mut PartialBuffer::new(&[][..]), output)?)

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / codecov

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / cargo test --shallow-minimal-versions

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / cargo test (stable, i686-unknown-linux-gnu, ubuntu-latest)

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / cargo test minimal-versions

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / Build for wasm32-wasip1-threads

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / cargo clippy

`?` operator has incompatible types

Check failure on line 102 in src/codec/bzip2/decoder.rs

View workflow job for this annotation

GitHub Actions / cargo test

`?` operator has incompatible types
}
}
Loading