1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-29 16:04:33 +00:00

Show read discrepancy in avalon_get_reset.

This commit is contained in:
Con Kolivas 2013-04-08 10:39:16 +10:00
parent 4e2b107642
commit 385f1cd8d4

View File

@ -320,7 +320,8 @@ static void avalon_get_reset(int fd, struct avalon_result *ar)
}
ret = read(fd, result, read_amount);
if (unlikely(ret != read_amount)) {
applog(LOG_WARNING, "Avalon: Error %d on read in avalon_get_reset", errno);
applog(LOG_WARNING, "Avalon: Error %d on read, asked for %d got %d in avalon_get_reset",
errno, read_amount, ret);
return;
}
if (opt_debug) {