Browse Source

Bugfix: bitforce: Fix formatting on temperature-less statline

Luke Dashjr 13 years ago
parent
commit
2c01c9a41c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver-bitforce.c

+ 1 - 1
driver-bitforce.c

@@ -133,7 +133,7 @@ static void get_bitforce_statline_before(char *buf, struct cgpu_info *bitforce)
 	if (gt > 0)
 	if (gt > 0)
 		tailsprintf(buf, "%5.1fC ", gt);
 		tailsprintf(buf, "%5.1fC ", gt);
 	else
 	else
-		tailsprintf(buf, "       ", gt);
+		tailsprintf(buf, "       ");
 	tailsprintf(buf, "        | ");
 	tailsprintf(buf, "        | ");
 }
 }