Commit 61cb05a963121b2a9c1ed77a51e4f53115a73784

Con Kolivas 2013-08-16T09:55:45

Add c to ambient temperature display for avalon driver.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-avalon.c b/driver-avalon.c
index 98dc835..29e65be 100644
--- a/driver-avalon.c
+++ b/driver-avalon.c
@@ -1233,7 +1233,7 @@ static void get_avalon_statline_before(char *buf, size_t bufsiz, struct cgpu_inf
 		if (info->fan2 >= 0 && info->fan2 < lowfan)
 			lowfan = info->fan2;
 
-		tailsprintf(buf, bufsiz, "%2d/%3dC %04dR | ", info->temp0, info->temp2, lowfan);
+		tailsprintf(buf, bufsiz, "%2dC/%3dC %04dR | ", info->temp0, info->temp2, lowfan);
 	}
 }