db/upnp/WorkQueue: remove redundant n_workers_exited check from IsOK()

This commit is contained in:
Max Kellermann 2014-01-14 11:43:18 +01:00
parent 79eed5182e
commit 60486bcc46
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ public:
private:
bool IsOK()
{
return ok && n_workers_exited == 0 && n_threads > 0;
return ok && n_threads > 0;
}
};