1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Fix warning on mingw build.

This commit is contained in:
Con Kolivas 2013-09-08 10:14:19 +10:00
parent 26a8a8e2c6
commit e65df9932b

2
util.c
View File

@ -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;