diff options
author | van Hauser <vh@thc.org> | 2020-08-24 17:32:41 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-08-24 17:32:41 +0200 |
commit | c7f0d3066875bca0ec28e9429df40293339dc05c (patch) | |
tree | e02642990b3fce6b50fee0dd49afa0af0ce14192 /src/afl-fuzz-extras.c | |
parent | a7c3f252d57707ca2c0035be6cbe80635cf8857b (diff) | |
download | afl++-c7f0d3066875bca0ec28e9429df40293339dc05c.tar.gz |
added afl_custom_fuzz_count
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r-- | src/afl-fuzz-extras.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-extras.c b/src/afl-fuzz-extras.c index 8cc2425f..d6c368d1 100644 --- a/src/afl-fuzz-extras.c +++ b/src/afl-fuzz-extras.c @@ -251,7 +251,7 @@ static void extras_check_and_sort(afl_state_t *afl, u32 min_len, u32 max_len, if (afl->extras_cnt > afl->max_det_extras) { OKF("More than %d tokens - will use them probabilistically.", - afl->max_det_extras); + afl->max_det_extras); } @@ -406,7 +406,7 @@ void add_extra(afl_state_t *afl, u8 *mem, u32 len) { if (afl->extras_cnt == afl->max_det_extras + 1) { OKF("More than %d tokens - will use them probabilistically.", - afl->max_det_extras); + afl->max_det_extras); } |