From b5573b3adbe01681156598ce064c228c0140f782 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Thu, 25 Jun 2020 10:33:59 +0200 Subject: add seek power schedule, remove update stats in calibration, fix help output --- src/afl-fuzz-stats.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/afl-fuzz-stats.c') diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 3fb0fdf5..0f89abca 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -194,7 +194,8 @@ void maybe_update_plot_file(afl_state_t *afl, double bitmap_cvg, double eps) { afl->plot_prev_uc == afl->unique_crashes && afl->plot_prev_uh == afl->unique_hangs && afl->plot_prev_md == afl->max_depth) || - unlikely(!afl->queue_cycle) || unlikely(get_cur_time() - afl->start_time <= 60)) { + unlikely(!afl->queue_cycle) || + unlikely(get_cur_time() - afl->start_time <= 60)) { return; -- cgit 1.4.1