summaryrefslogtreecommitdiff
path: root/src/Async.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2013-01-22 00:32:13 -0800
committerPixel <pixel@nobis-crew.org>2013-01-22 00:32:13 -0800
commit107d87dc983f34e4ff23a4db188baa650ac51f98 (patch)
tree9721dc97d9c2777ab35c3d22909a8fc8e5df92eb /src/Async.cc
parent6f280f3680e9fad24e00dd63a55577c5409945b3 (diff)
Cleaning up some cruft.
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--;