Browse Source

Bugfix: Missing printf value in merge from cgminer

Luke Dashjr 13 years ago
parent
commit
0ff707bb9d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      api.c

+ 2 - 1
api.c

@@ -2015,7 +2015,8 @@ static int itemstats(int i, char *id, struct cgminer_stats *stats, struct cgmine
 
 		sprintf(buf, isjson
 			? "%s}"
-			: "%s" SEPSTR);
+			: "%s" SEPSTR,
+			extra);
 
 		strcat(io_buffer, buf);