aboutsummaryrefslogtreecommitdiff
path: root/cpu-miner.c
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2011-03-21 03:42:57 -0400
committerJeff Garzik <jgarzik@pobox.com>2011-03-21 03:42:57 -0400
commitd49d639269648394ceab175aaa8ffea876e29f4b (patch)
tree39f2ff081e71a691165a159f630f34fe97a1ca6b /cpu-miner.c
parent23e9cf91f09fa3ec364b439787f768f314780b85 (diff)
cpu-miner.c: Remove newline from applog() call
Diffstat (limited to 'cpu-miner.c')
-rw-r--r--cpu-miner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-miner.c b/cpu-miner.c
index 2b0ebe2..e402b0b 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);
}