1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-25 22:14:36 +00:00

Offset needs to be incremented after avalon reads.

This commit is contained in:
Con Kolivas 2013-05-27 20:37:21 +10:00
parent 7748c46943
commit 7506e499b9

View File

@ -796,6 +796,7 @@ static void *avalon_get_results(void *userdata)
} }
memcpy(&readbuf[offset], &buf, ret); memcpy(&readbuf[offset], &buf, ret);
offset += ret;
} }
return NULL; return NULL;
} }