Remove return type from fuzz_loop fn that never returns (#1606)

This commit is contained in:
Dominik Maier 2023-10-06 01:02:16 +09:00 committed by GitHub
parent 2ade1ee1f6
commit 30686a2d28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)?;