From 6e64383b32a2d3d6bbc74ad09c73efebf2f6caa0 Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Sat, 5 Sep 2015 20:16:24 +0200 Subject: [PATCH] klaus small fixes --- ccminer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ccminer.cpp b/ccminer.cpp index 792b04b..2c9713c 100644 --- a/ccminer.cpp +++ b/ccminer.cpp @@ -1819,7 +1819,6 @@ static void *miner_thread(void *userdata) } work.scanned_from = start_nonce; - nonceptr[0] = start_nonce; if (opt_debug) applog(LOG_DEBUG, "GPU #%d: start=%08x end=%08x range=%08x", @@ -2047,7 +2046,7 @@ static void *miner_thread(void *userdata) work.scanned_to = max_nonce; if (opt_debug && opt_benchmark) { // to debug nonce ranges - applog(LOG_DEBUG, "GPU #%d: ends=%08x range=%llx", device_map[thr_id], + applog(LOG_DEBUG, "GPU #%d: ends=%08x range=%08x", device_map[thr_id], nonceptr[0], (nonceptr[0] - start_nonce)); } }