From ea5ff7f0ef3d8e362e91144ec8d3a4f003a5a39a Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Fri, 4 Oct 2019 12:54:58 +0200 Subject: [PATCH] :bug: Fix inner template call --- src/parse/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse/check.c b/src/parse/check.c index 32537ead..03d6ac04 100644 --- a/src/parse/check.c +++ b/src/parse/check.c @@ -592,7 +592,7 @@ CHECK_BO(check_call(env, exp)) if(exists) { if(env->func == exists->d.func_ref) { if(check_call(env, exp) < 0 || - find_func_match(env, env->func, exp->args)) + !find_func_match(env, env->func, exp->args)) continue; m_func = env->func; break; -- 2.43.0