about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-04-02 12:08:54 +0200
committervanhauser-thc <vh@thc.org>2023-04-02 12:08:54 +0200
commit319b2e8e6f64bd35c5395c8a9e5053f25875a86d (patch)
treeb4720a5bb918ad599d6a99d438be01c9be42d533
parente46e0bce44f0799731f5e7724ba3dfacafd4c41a (diff)
downloadafl++-319b2e8e6f64bd35c5395c8a9e5053f25875a86d.tar.gz
fix ui layout with slow targets in pizza mode
-rw-r--r--src/afl-fuzz-stats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 88844322..07157bf7 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -1803,10 +1803,10 @@ void show_stats_pizza(afl_state_t *afl) {
 
   /* Show a warning about slow execution. */
 
-  if (afl->stats_avg_exec < 100) {
+  if (afl->stats_avg_exec < 20) {
 
     sprintf(tmp, "%s/sec (%s)", u_stringify_float(IB(0), afl->stats_avg_exec),
-            afl->stats_avg_exec < 20 ? "zzzz..." : "Gennarino is at it again!");
+            "zzzz...");
 
     SAYF(bV bSTOP "                pizza making speed : " cLRD
                   "%-22s                ",