1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-08-30 15:51:56 +00:00

There is no point subtracting 1 from maxq in get_work_thread.

This commit is contained in:
Con Kolivas 2012-08-21 21:53:35 +10:00
parent 1dff48e759
commit 787e40a7cc

View File

@ -2407,7 +2407,7 @@ retry:
if (ts >= maxq) if (ts >= maxq)
goto out; goto out;
if (ts >= opt_queue && tq >= maxq - 1) if (ts >= opt_queue && tq >= maxq)
goto out; goto out;
if (clone_available()) if (clone_available())