diff options
author | vanhauser-thc <vh@thc.org> | 2021-12-02 10:41:24 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-12-02 10:41:24 +0100 |
commit | ca7144161f900a0f5c8b76922a0102fbcc291f2c (patch) | |
tree | b613e31142b9598c0f385c3e40ff25366e292035 /src/afl-showmap.c | |
parent | 80d5afa3738c06a376f8a256129537a9cbdd2229 (diff) | |
download | afl++-ca7144161f900a0f5c8b76922a0102fbcc291f2c.tar.gz |
fixes
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 236553ce..8cddcb32 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -1435,9 +1435,9 @@ int main(int argc, char **argv_orig, char **envp) { if (!quiet_mode || collect_coverage) { if (!tcnt && !have_coverage) { FATAL("No instrumentation detected" cRST); } - OKF("Captured %u tuples (highest value %u, total values %llu) in " - "'%s'." cRST, - tcnt, highest, total, out_file); + OKF("Captured %u tuples (map size %u, highest value %u, total values %llu) " + "in '%s'." cRST, + tcnt, fsrv->real_map_size, highest, total, out_file); if (collect_coverage) OKF("A coverage of %u edges were achieved out of %u existing (%.02f%%) " "with %llu input files.", |