about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authoryuawn <ssspeed00@gmail.com>2021-12-12 07:12:58 +0000
committeryuawn <ssspeed00@gmail.com>2021-12-12 07:12:58 +0000
commit663889bc94c69e2be543ac2fce9fd9901592b0a6 (patch)
tree52cd209172891c2e6c3228d2154e376d5ac7af5f /src
parent6c39e2cc2e5cd4b8eafd3e75014929d263b9b745 (diff)
downloadafl++-663889bc94c69e2be543ac2fce9fd9901592b0a6.tar.gz
fix fuzzer_stats parameter order
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-stats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 50e6c2f4..3c0480e5 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -296,9 +296,9 @@ void write_stats_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg,
           ((double)(afl->prev_run_time + get_cur_time() - afl->start_time) /
            1000),
       afl->last_avg_execs_saved, afl->queued_items, afl->queued_favored,
-      afl->queued_discovered, afl->queued_imported, afl->max_depth,
+      afl->queued_discovered, afl->queued_imported, afl->queued_variable, afl->max_depth,
       afl->current_entry, afl->pending_favored, afl->pending_not_fuzzed,
-      afl->queued_variable, stability, bitmap_cvg, afl->saved_crashes,
+      stability, bitmap_cvg, afl->saved_crashes,
       afl->saved_hangs, afl->last_find_time / 1000, afl->last_crash_time / 1000,
       afl->last_hang_time / 1000, afl->fsrv.total_execs - afl->last_crash_execs,
       afl->fsrv.exec_tmout, afl->slowest_exec_ms,