Skip to content

Commit

Permalink
Address compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel committed Apr 16, 2020
1 parent c22dd7c commit 8ebd044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/compare_xz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use lzma_rs::error::Result;
use xz2::stream;

fn decode_xz_lzmars(compressed: &[u8]) -> Result<Vec<u8>> {
let mut bf = std::io::Cursor::new(compressed);
let bf = std::io::Cursor::new(compressed);
let mut decomp: Vec<u8> = Vec::new();
lzma_rs::xz_decompress(&mut bf, &mut decomp)?;
Ok(decomp)
Expand Down

0 comments on commit 8ebd044

Please sign in to comment.