summaryrefslogtreecommitdiff
path: root/src/Async.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Async.cc')
-rw-r--r--src/Async.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Async.cc b/src/Async.cc
index afc1879..09465d3 100644
--- a/src/Async.cc
+++ b/src/Async.cc
@@ -67,7 +67,7 @@ void Balau::AsyncManager::startOneFinisher() {
void Balau::AsyncManager::joinStoppedFinishers() {
for (auto i = m_workers.begin(); i != m_workers.end(); i++) {
AsyncFinishWorker * worker = *i;
- if (!worker->m_stopped)
+ if (!worker->stopped())
continue;
Printer::elog(E_ASYNC, "Joining stopped worker at %p", worker);
m_numFinishers--;