From 9fd396ccaba7ac3d462c8be89f3fb08295ce7e0a Mon Sep 17 00:00:00 2001 From: David Phillips Date: Thu, 14 Sep 2017 18:09:15 +1200 Subject: Fix accidental regression with never-zero loop count --- sand-leek.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sand-leek.c') diff --git a/sand-leek.c b/sand-leek.c index 338f455..36f9503 100644 --- a/sand-leek.c +++ b/sand-leek.c @@ -227,8 +227,8 @@ monitor_progress(unsigned long volatile *khashes, int thread_count) { fprintf(stderr, "Last second: %lu kH/s (%.2f kH/s/thread) | Average: %.2f kH/s (%.2f kH/s/thread)\r", total_khashes - last_total_khashes, (double)(total_khashes - last_total_khashes) / thread_count, - (double)total_khashes / (loops || 1), - ((double)total_khashes / (loops || 1)) / thread_count); + (double)total_khashes / (loops ? loops : 1), + ((double)total_khashes / (loops ? loops : 1)) / thread_count); sleep(1); loops++; } -- cgit v1.1