Commit 93800e57904a42b1c235ec199548fe5247705856

Con Kolivas 2011-07-06T13:19:56

More output tidy.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/main.c b/main.c
index 95f9b7f..91dab7e 100644
--- a/main.c
+++ b/main.c
@@ -665,7 +665,7 @@ static void hashmeter(int thr_id, struct timeval *diff,
 	timeval_subtract(&total_diff, &total_tv_end, &total_tv_start);
 	total_secs = (double)total_diff.tv_sec +
 		((double)total_diff.tv_usec / 1000000.0);
-	printf("[Rate (%ds): %.2f  (avg): %.2f Mhash/s] [Accepted: %d  Rejected: %d  HW errors: %d]\r",
+	printf("[Rate (%ds): %.2f  (avg): %.2f Mhash/s] [Accepted: %d  Rejected: %d  HW errors: %d]          \r",
 	       opt_log_interval, rolling_local / local_secs, total_mhashes_done / total_secs,
 		accepted, rejected, hw_errors);
 	fflush(stdout);