Browse Source

Fix pool number display.

Con Kolivas 14 years ago
parent
commit
801d9eaa7b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -2788,7 +2788,7 @@ updated:
 			wattron(logwin, A_BOLD);
 			wattron(logwin, A_BOLD);
 		if (pool->enabled != POOL_ENABLED)
 		if (pool->enabled != POOL_ENABLED)
 			wattron(logwin, A_DIM);
 			wattron(logwin, A_DIM);
-		wlogprint("%d: ");
+		wlogprint("%d: ", pool->pool_no);
 		switch (pool->enabled) {
 		switch (pool->enabled) {
 			case POOL_ENABLED:
 			case POOL_ENABLED:
 				wlogprint("Enabled ");
 				wlogprint("Enabled ");