Commit c433abf4 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Coverity spotted an unused assignment.

parent 69328819
......@@ -439,7 +439,7 @@ Pool_Work_Thread(struct pool *pp, struct worker *wrk)
tmo = now + 1.;
else
tmo = now + 60.;
i = Lck_CondWait(&wrk->cond, &pp->mtx, tmo);
(void)Lck_CondWait(&wrk->cond, &pp->mtx, tmo);
if (wrk->task->func != NULL) {
/* We have been handed a new task */
tpx = *wrk->task;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment