0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-03 04:02:47 +01:00

ircd::ctx: Use better namespace identifier on call.

This commit is contained in:
Jason Volk 2020-02-25 11:20:16 -08:00
parent d6d83f6498
commit d0b0c4e23c

View file

@ -2750,7 +2750,7 @@ ircd::ctx::dock::wait()
}}; }};
q.push_back(current); q.push_back(current);
ircd::ctx::wait(); this_ctx::wait();
} }
void void
@ -2772,7 +2772,7 @@ ircd::ctx::dock::wait(const predicate &pred)
q.push_back(current); do q.push_back(current); do
{ {
ircd::ctx::wait(); this_ctx::wait();
} }
while(!pred()); while(!pred());
} }