From 85f1933f9b35bb49f00037d57ea2622db6ecea2a Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 4 Mar 2016 20:02:20 -0800 Subject: [PATCH] Stop double-counting rounds. --- stutterfuzz.c | 1 - 1 file changed, 1 deletion(-) diff --git a/stutterfuzz.c b/stutterfuzz.c index cf0a74b..4966d96 100644 --- a/stutterfuzz.c +++ b/stutterfuzz.c @@ -192,7 +192,6 @@ static struct file *file_next() { if (iter->next == &file_head) { iter = iter->next->next; - rounds++; if (!(++rounds % 100)) { fprintf(stderr, "\rRounds: %ju\r", (uintmax_t) rounds); }