From 837c7319f142b0d10b6a8a30b0a4f0819ef6df1f Mon Sep 17 00:00:00 2001 From: ckolivas Date: Fri, 19 Jul 2013 19:15:01 +1000 Subject: [PATCH] Fix extra argument passed to statline before. --- driver-opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver-opencl.c b/driver-opencl.c index 3350eb85..ec635b87 100644 --- a/driver-opencl.c +++ b/driver-opencl.c @@ -1281,7 +1281,7 @@ static void get_opencl_statline_before(char *buf, size_t bufsiz, struct cgpu_inf if (gt != -1) tailsprintf(buf, bufsiz, "%5.1fC ", gt); else - tailsprintf(buf, bufsiz, " ", gt); + tailsprintf(buf, bufsiz, " "); if (gf != -1) // show invalid as 9999 tailsprintf(buf, bufsiz, "%4dRPM ", gf > 9999 ? 9999 : gf);