about summary refs log tree commit diff
path: root/src/afl-fuzz-stats.c
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-10-08 12:40:05 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2019-10-08 12:40:05 +0200
commit125a59df91bb09f3288371185c15a48a08376bfe (patch)
tree18d703d66d32c55706f7f7bd30a813a9742327f2 /src/afl-fuzz-stats.c
parenteae4a9e1f89f82ea79568635842617cc64081bfc (diff)
parent20f009e927b8d98a595575e5d4366a437d6e7247 (diff)
downloadafl++-125a59df91bb09f3288371185c15a48a08376bfe.tar.gz
Merge branch 'master' of github.com:vanhauser-thc/AFLplusplus
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r--src/afl-fuzz-stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 5e773e96..f1bc1c8a 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -421,7 +421,7 @@ void show_stats(void) {
      together, but then cram them into a fixed-width field - so we need to
      put them in a temporary buffer first. */
 
-  sprintf(tmp, "%s%s%u (%0.02f%%)", DI(current_entry),
+  sprintf(tmp, "%s%s%u (%0.01f%%)", DI(current_entry),
           queue_cur->favored ? "." : "*", queue_cur->fuzz_level,
           ((double)current_entry * 100) / queued_paths);