diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-21 10:36:18 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-03-21 10:36:18 +0100 |
commit | 993bf03af90bca5e155251df271d536d5eb1d215 (patch) | |
tree | 31d3f8fecc1296b1ece35005ff9c155590243269 /src/afl-fuzz-stats.c | |
parent | 2508008b53b3e3a891a3d4ba4d73d554a91e5c16 (diff) | |
parent | a0012c9e824e4709bcc5c241424efb1821a897aa (diff) | |
download | afl++-993bf03af90bca5e155251df271d536d5eb1d215.tar.gz |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus 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 b6e64841..34fdea25 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -105,7 +105,7 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, afl->start_time / 1000, cur_time / 1000, (cur_time - afl->start_time) / 1000, getpid(), afl->queue_cycle ? (afl->queue_cycle - 1) : 0, afl->cycles_wo_finds, - afl->total_execs, /*eps,*/ + afl->total_execs, afl->total_execs / ((double)(get_cur_time() - afl->start_time) / 1000), afl->queued_paths, afl->queued_favored, afl->queued_discovered, afl->queued_imported, afl->max_depth, afl->current_entry, |