get_work never returns false so get rid of fail pause loop.
diff --git a/cgminer.c b/cgminer.c
index d47aa9d..523b5aa 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -4082,13 +4082,6 @@ retry:
ret = true;
out:
- if (unlikely(ret == false)) {
- applog(LOG_DEBUG, "Retrying after %d seconds", fail_pause);
- sleep(fail_pause);
- fail_pause += opt_fail_pause;
- goto retry;
- }
- fail_pause = opt_fail_pause;
work->thr_id = thr_id;
thread_reportin(thr);