Browse Source

Fix warning on mingw build.

Con Kolivas 12 years ago
parent
commit
e65df9932b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      util.c

+ 1 - 1
util.c

@@ -1726,7 +1726,7 @@ bool auth_stratum(struct pool *pool)
 
 static int recv_byte(int sockd)
 {
-	unsigned char c;
+	char c;
 
 	if (recv(sockd, &c, 1, 0) != -1)
 		return c;