Commit 801d9eaa7b420e255c333734e57aee36e8ccbf36

Con Kolivas 2012-05-06T14:13:39

Fix pool number display.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 0a36ab7..0d979a1 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -2788,7 +2788,7 @@ updated:
 			wattron(logwin, A_BOLD);
 		if (pool->enabled != POOL_ENABLED)
 			wattron(logwin, A_DIM);
-		wlogprint("%d: ");
+		wlogprint("%d: ", pool->pool_no);
 		switch (pool->enabled) {
 			case POOL_ENABLED:
 				wlogprint("Enabled ");