Skip to content

Commit

Permalink
fix PR38 build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Bounti committed Jul 1, 2024
1 parent 255a957 commit f522a74
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() {
return Ok(false);
return Ok(false);
}
return Ok(true);
Ok(true)
}
}

Expand Down

0 comments on commit f522a74

Please sign in to comment.