diff options
author | van Hauser <vh@thc.org> | 2021-03-19 23:54:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-19 23:54:36 +0100 |
commit | 090128b3f8b8bc80cf47ae1481b01c0509dc6357 (patch) | |
tree | 03c3314427f02533a8db3e06587ce3afe74a5f23 /src/afl-fuzz-stats.c | |
parent | d7e121e2c99c02d4b6984f21ba837d44bce9c77c (diff) | |
parent | 749b03d812b76746b4a673f34a13fb0b067fd61d (diff) | |
download | afl++-090128b3f8b8bc80cf47ae1481b01c0509dc6357.tar.gz |
Merge branch 'dev' into dev
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 99059a2d..3e237003 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -391,7 +391,7 @@ void maybe_update_plot_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg, fprintf(afl->fsrv.plot_file, "%llu, %llu, %u, %u, %u, %u, %0.02f%%, %llu, %llu, %u, %0.02f, %llu, " "%u\n", - get_cur_time() / 1000, afl->queue_cycle - 1, afl->current_entry, + (afl->prev_run_time + get_cur_time() - afl->start_time), afl->queue_cycle - 1, afl->current_entry, afl->queued_paths, afl->pending_not_fuzzed, afl->pending_favored, bitmap_cvg, afl->unique_crashes, afl->unique_hangs, afl->max_depth, eps, afl->plot_prev_ed, t_bytes); /* ignore errors */ |