diff options
author | vanhauser-thc <vh@thc.org> | 2021-05-10 13:46:31 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-05-10 13:46:31 +0200 |
commit | 50af4654e314df75ba8653340e5a58e9e42f1f19 (patch) | |
tree | 7d9242440506351325693d656097d9fd05ace952 /src/afl-fuzz-stats.c | |
parent | 82d0e4f210ba6dd12eb4e09cbb144850660e050b (diff) | |
download | afl++-50af4654e314df75ba8653340e5a58e9e42f1f19.tar.gz |
code-format
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 2dea1bcb..313263f9 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -576,11 +576,11 @@ void show_stats(afl_state_t *afl) { } - /* AFL_EXIT_ON_TIME. */ + /* AFL_EXIT_ON_TIME. */ - if (unlikely(afl->last_path_time && !afl->non_instrumented_mode && - afl->afl_env.afl_exit_on_time && - (cur_ms - afl->last_path_time) > afl->exit_on_time)) { + if (unlikely(afl->last_path_time && !afl->non_instrumented_mode && + afl->afl_env.afl_exit_on_time && + (cur_ms - afl->last_path_time) > afl->exit_on_time)) { afl->stop_soon = 2; |