Skip to content

Commit

Permalink
underscore unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Feb 10, 2025
1 parent a4818c4 commit c197b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/deserialize_br.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fuzz_target!(|data: &[u8]| {
// check that the new implementation creates the same number of pair nodes as the old one
assert_eq!(node_count * 2, allocator.pair_count());
match (res1, res2) {
(Err(e1), Err(e2)) => {
(Err(_e1), Err(_e2)) => {
// both failed, that's fine
return;
}
Expand Down

0 comments on commit c197b2b

Please sign in to comment.