Commit bc9c2f75 authored by Marian Triebe's avatar Marian Triebe

Fix typo

parent 8980cf9b
...@@ -221,7 +221,7 @@ scheduled_actor::resume(execution_unit* ctx, size_t max_throughput) { ...@@ -221,7 +221,7 @@ scheduled_actor::resume(execution_unit* ctx, size_t max_throughput) {
ptr = next_message(); ptr = next_message();
if (!ptr) { if (!ptr) {
reset_timeout_if_needed(); reset_timeout_if_needed();
if (mailbox.try_block()) if (mailbox().try_block())
return resumable::awaiting_message; return resumable::awaiting_message;
} }
} while (!ptr); } while (!ptr);
......
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