Browse Source

There is no point subtracting 1 from maxq in get_work_thread.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
787e40a7cc
  1. 2
      cgminer.c

2
cgminer.c

@ -2407,7 +2407,7 @@ retry: @@ -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())

Loading…
Cancel
Save