diff options
author | h1994st <h1994st@gmail.com> | 2020-03-02 19:29:41 -0500 |
---|---|---|
committer | h1994st <h1994st@gmail.com> | 2020-03-02 19:29:41 -0500 |
commit | 7862416844a2636d37754b8b2175dbd97494771f (patch) | |
tree | 92de02197b92f073f2c66fcb28d6f06412694491 /src/afl-fuzz-stats.c | |
parent | 031946136bb61990d03d7cc4ebc9487218b30338 (diff) | |
download | afl++-7862416844a2636d37754b8b2175dbd97494771f.tar.gz |
Uniform API for both Python and custom mutator
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])); |