]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Fix inner template call
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 10:54:58 +0000 (12:54 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 10:54:58 +0000 (12:54 +0200)
src/parse/check.c

index 32537eadc05185c5c615d069b551c55b5a538cc1..03d6ac048c0d8c8b78ea2858810de99914945552 100644 (file)
@@ -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;