diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-03-04 18:38:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 18:38:03 +0100 |
commit | e43473faefffb93c7b3013dc25c07044a7656e7f (patch) | |
tree | d386d4f2da9242c97685257529a656373d1dd02c /src/afl-fuzz-stats.c | |
parent | 05a3418f8668cadd17e32fd89bfcf136faa61f52 (diff) | |
parent | 38e7dd2b9efbd9c6cda47774630a82660d3156b3 (diff) | |
download | afl++-e43473faefffb93c7b3013dc25c07044a7656e7f.tar.gz |
Merge pull request #221 from h1994st/master
Uniform Python and custom mutator API
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 c1aa8315..1b763c01 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -655,7 +655,7 @@ void show_stats(void) { } - if (custom_mutator) { + if (mutator) { sprintf(tmp, "%s/%s", DI(stage_finds[STAGE_CUSTOM_MUTATOR]), DI(stage_cycles[STAGE_CUSTOM_MUTATOR])); |