From: fennecdjay Date: Sat, 24 Aug 2019 10:24:34 +0000 (+0200) Subject: :bug: typo in template func X-Git-Tag: nightly~2268 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=9dac56706b4f5626ccc760674206f0a36d4c7c0a;p=gwion.git :bug: typo in template func --- diff --git a/src/parse/check.c b/src/parse/check.c index fb02fe13..8ad333fe 100644 --- a/src/parse/check.c +++ b/src/parse/check.c @@ -588,7 +588,7 @@ CHECK_BO(check_call(env, exp)) m_func = env->func; break; } - if((m_func == exists->d.func_ref)) + if((m_func = exists->d.func_ref)) break; } else { const Value value = template_get_ready(env, v, "template", i);