Browse Source

Use copy_time function in bflsc driver.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
c30391225f
  1. 6
      driver-bflsc.c

6
driver-bflsc.c

@ -1214,9 +1214,9 @@ static void *bflsc_get_results(void *userdata) @@ -1214,9 +1214,9 @@ static void *bflsc_get_results(void *userdata)
cgtime(&now);
for (i = 0; i < sc_info->sc_count; i++) {
memcpy(&(sc_info->sc_devs[i].last_check_result), &now, sizeof(now));
memcpy(&(sc_info->sc_devs[i].last_dev_result), &now, sizeof(now));
memcpy(&(sc_info->sc_devs[i].last_nonce_result), &now, sizeof(now));
copy_time(&(sc_info->sc_devs[i].last_check_result), &now);
copy_time(&(sc_info->sc_devs[i].last_dev_result), &now);
copy_time(&(sc_info->sc_devs[i].last_nonce_result), &now);
}
while (sc_info->shutdown == false) {

Loading…
Cancel
Save