Browse Source

Fix warning on building avalon on win32

Con Kolivas 12 years ago
parent
commit
5b702bc0da
1 changed files with 2 additions and 2 deletions
  1. 2 2
      driver-avalon.c

+ 2 - 2
driver-avalon.c

@@ -223,7 +223,7 @@ static inline int avalon_gets(int fd, uint8_t *buf, struct thr_info *thr,
 		timeout.tv_usec = 100000;
 
 		FD_ZERO(&rd);
-		FD_SET(fd, &rd);
+		FD_SET((SOCKETTYPE)fd, &rd);
 		ret = select(fd + 1, &rd, NULL, NULL, &timeout);
 		if (unlikely(ret < 0)) {
 			applog(LOG_ERR, "Avalon: Error %d on select in avalon_gets", errno);
@@ -310,7 +310,7 @@ static void avalon_get_reset(int fd, struct avalon_result *ar)
 	memset(result, 0, AVALON_READ_SIZE);
 	memset(ar, 0, AVALON_READ_SIZE);
 	FD_ZERO(&rd);
-	FD_SET(fd, &rd);
+	FD_SET((SOCKETTYPE)fd, &rd);
 	ret = select(fd + 1, &rd, NULL, NULL, &timeout);
 	if (unlikely(ret < 0)) {
 		applog(LOG_WARNING, "Avalon: Error %d on select in avalon_get_reset", errno);