Browse Source

Merge branch 'master' of github.com:ckolivas/cgminer

Con Kolivas 14 years ago
parent
commit
220d0c2e00
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.c

+ 2 - 2
main.c

@@ -5586,9 +5586,9 @@ static void get_opencl_statline_before(char *buf, struct cgpu_info *gpu)
 		int gp;
 
 		if (gt != -1)
-			tailsprintf(buf, " %5.1fC ", gt);
+			tailsprintf(buf, "%5.1fC ", gt);
 		else
-			tailsprintf(buf, "        ", gt);
+			tailsprintf(buf, "       ", gt);
 		if (gf != -1)
 			tailsprintf(buf, "%4dRPM ", gf);
 		else if ((gp = gpu_fanpercent(gpuid)) != -1)