1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-27 23:14:21 +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)
goto out;
if (ts >= opt_queue && tq >= maxq - 1)
if (ts >= opt_queue && tq >= maxq)
goto out;
if (clone_available())