Skip to content

Commit

Permalink
Remove return type from fuzz_loop fn that never returns (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk authored Oct 5, 2023
1 parent 2ade1ee commit 30686a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libafl/src/fuzzer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ where
executor: &mut E,
state: &mut EM::State,
manager: &mut EM,
) -> Result<CorpusId, Error> {
) -> Result<(), Error> {
let monitor_timeout = STATS_TIMEOUT_DEFAULT;
loop {
manager.maybe_report_progress(state, monitor_timeout)?;
Expand Down

0 comments on commit 30686a2

Please sign in to comment.