summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/block_task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/block_task.cpp b/lib/block_task.cpp
index 35c0041..c460d01 100644
--- a/lib/block_task.cpp
+++ b/lib/block_task.cpp
@@ -202,7 +202,7 @@ void BlockActor::handle_task(void)
//since nothing else is coming in, its safe to mark done
for (size_t i = 0; i < num_inputs; i++)
{
- const bool nothing = this->input_queues.empty(i) and this->input_tags[i].empty();
+ const bool nothing = this->input_queues.empty(i) and this->input_msgs[i].empty();
this->inputs_available.set(i, not nothing);
if GRAS_UNLIKELY(this->is_input_done(i)) this->mark_done();
}