Browse Source

format fix and bad variable usage fix for --benchfile

port-ckolivas
Kano 11 years ago committed by Noel Maersk
parent
commit
f946aa6fd2
  1. 8
      sgminer.c

8
sgminer.c

@ -3075,14 +3075,14 @@ static bool benchfile_get_work(struct work *work) @@ -3075,14 +3075,14 @@ static bool benchfile_get_work(struct work *work)
}
}
do
{
do {
benchfile_line++;
// Empty lines and lines starting with '#' or '/' are ignored
if (*buf != '\0' && *buf != '#' && *buf != '/') {
char *commas[BENCHWORK_COUNT];
int i, j, len;
long nonce_time;
commas[0] = buf;
for (i = 1; i < BENCHWORK_COUNT; i++) {
@ -3128,9 +3128,9 @@ static bool benchfile_get_work(struct work *work) @@ -3128,9 +3128,9 @@ static bool benchfile_get_work(struct work *work)
j += 8;
}
long time = atol(commas[BENCHWORK_NONCETIME]);
nonce_time = atol(commas[BENCHWORK_NONCETIME]);
sprintf(&(item[j]), "%08lx", time);
sprintf(&(item[j]), "%08lx", nonce_time);
j += 8;
strcpy(&(item[j]), commas[BENCHWORK_DIFFBITS]);

Loading…
Cancel
Save