Stop double-counting rounds.

This commit is contained in:
Ian Gulliver
2016-03-04 20:02:20 -08:00
parent c1b8e5b66b
commit 85f1933f9b

View File

@@ -192,7 +192,6 @@ static struct file *file_next() {
if (iter->next == &file_head) { if (iter->next == &file_head) {
iter = iter->next->next; iter = iter->next->next;
rounds++;
if (!(++rounds % 100)) { if (!(++rounds % 100)) {
fprintf(stderr, "\rRounds: %ju\r", (uintmax_t) rounds); fprintf(stderr, "\rRounds: %ju\r", (uintmax_t) rounds);
} }