Skip to content

Commit

Permalink
fix PR build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bounti committed Jul 1, 2024
1 parent 2717ff9 commit 255a957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libpresifuzz_feedbacks/src/differential_feedback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ where
let core_observer = observers.match_name::<ExecTrace<C>>(&self.core_observer_name).unwrap();

if core_observer.cnt() == ref_observer.cnt() {
Ok(false);
return Ok(false);
}
Ok(true)
return Ok(true);

Check warning

Code scanning / clippy

unneeded return statement Warning

unneeded return statement

Check warning

Code scanning / clippy

unneeded return statement Warning

unneeded return statement
}
}

Expand Down

0 comments on commit 255a957

Please sign in to comment.