0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-11 04:58:40 +02:00

modules/console: Appease -Wparentheses.

This commit is contained in:
Jason Volk 2019-02-16 12:42:57 -08:00
parent 0c39f5d219
commit 108e90702e

View file

@ -1444,7 +1444,7 @@ console_cmd__ctx__term(opt &out, const string_view &line)
for(auto *const &ctx : ctx::ctxs) for(auto *const &ctx : ctx::ctxs)
if(id(*ctx) == param.at<uint64_t>(i)) if(id(*ctx) == param.at<uint64_t>(i))
{ {
terminate(*ctx); ctx::terminate(*ctx);
break; break;
} }