diff options
author | vanhauser-thc <vh@thc.org> | 2023-02-15 11:28:43 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-02-15 11:28:43 +0100 |
commit | 04356ecbbe2c6cb72d279081702a6044fcc3ae92 (patch) | |
tree | c0bff720c97ad31b7ccceaf7d12c8d2ddba23d34 /custom_mutators/autotokens/autotokens.cpp | |
parent | 2090f17a9bb9cc225c1d24e8b21ed0c993a2665f (diff) | |
download | afl++-04356ecbbe2c6cb72d279081702a6044fcc3ae92.tar.gz |
fix
Diffstat (limited to 'custom_mutators/autotokens/autotokens.cpp')
-rw-r--r-- | custom_mutators/autotokens/autotokens.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/custom_mutators/autotokens/autotokens.cpp b/custom_mutators/autotokens/autotokens.cpp index a2b2814f..b1f1542e 100644 --- a/custom_mutators/autotokens/autotokens.cpp +++ b/custom_mutators/autotokens/autotokens.cpp @@ -145,8 +145,9 @@ static void first_run(void *data) { if ((valid * 100) / afl_ptr->extras_cnt <= 70) { module_disabled = 1; } - DEBUGF(stderr, "DICT: valid %u, total %u, %u <= 70 == disable\n", valid, - afl_ptr->extras_cnt, (u32)((valid * 100) / afl_ptr->extras_cnt)); + DEBUGF(stderr, "DICT: total %u, valid %u, %u <= 70 == disable\n", + afl_ptr->extras_cnt, valid, + (u32)((valid * 100) / afl_ptr->extras_cnt)); } else { |