Skip to content

Commit

Permalink
style: Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Sep 27, 2024
1 parent d635684 commit 5ac6ae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzz/fuzz_targets/fuzz_arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn factor(i: &mut &str) -> PResult<i64> {

fn term(i: &mut &str) -> PResult<i64> {
incr(i)?;
let init = factor(i).inspect_err(|e| {
let init = factor(i).inspect_err(|_e| {
decr();
})?;

Expand Down Expand Up @@ -88,7 +88,7 @@ fn term(i: &mut &str) -> PResult<i64> {

fn expr(i: &mut &str) -> PResult<i64> {
incr(i)?;
let init = term(i).inspect_err(|e| {
let init = term(i).inspect_err(|_e| {
decr();
})?;

Expand Down

0 comments on commit 5ac6ae5

Please sign in to comment.