From 108e90702e1299bd27b0a136ae8bfe534518a2b0 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 16 Feb 2019 12:42:57 -0800 Subject: [PATCH] modules/console: Appease -Wparentheses. --- modules/console.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/console.cc b/modules/console.cc index dded9d50b..f6091acec 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -1444,7 +1444,7 @@ console_cmd__ctx__term(opt &out, const string_view &line) for(auto *const &ctx : ctx::ctxs) if(id(*ctx) == param.at(i)) { - terminate(*ctx); + ctx::terminate(*ctx); break; }