From d49d639269648394ceab175aaa8ffea876e29f4b Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Mon, 21 Mar 2011 03:42:57 -0400 Subject: [PATCH] cpu-miner.c: Remove newline from applog() call --- cpu-miner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu-miner.c b/cpu-miner.c index 2b0ebe2d..e402b0b5 100644 --- a/cpu-miner.c +++ b/cpu-miner.c @@ -434,7 +434,7 @@ static void hashmeter(int thr_id, const struct timeval *diff, secs = (double)diff->tv_sec + ((double)diff->tv_usec / 1000000.0); if (!opt_quiet) - applog(LOG_INFO, "thread %d: %lu hashes, %.2f khash/sec\n", + applog(LOG_INFO, "thread %d: %lu hashes, %.2f khash/sec", thr_id, hashes_done, khashes / secs); }