Browse Source

Merge pull request #111 from luke-jr/bugfix_bitforce_id

Bugfix: BitFORCE index needs to be static to count correctly
nfactor-troky
Con Kolivas 13 years ago
parent
commit
82798f6f98
  1. 2
      bitforce.c

2
bitforce.c

@ -72,7 +72,7 @@ static void BFwrite(int fd, const void *buf, size_t bufLen) @@ -72,7 +72,7 @@ static void BFwrite(int fd, const void *buf, size_t bufLen)
static bool bitforce_detect_one(const char *devpath)
{
char pdevbuf[0x100];
int i = 0;
static int i = 0;
if (total_devices == MAX_DEVICES)
return false;

Loading…
Cancel
Save