]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix template_size
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 09:41:54 +0000 (11:41 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 09:41:54 +0000 (11:41 +0200)
src/lib/object_op.c

index c187b10c10dfad9b52fbbb5e54c3517f650a5419..623d90eeed82151564fa29f98aaa2f4455fb121c 100644 (file)
@@ -300,7 +300,7 @@ ANN static ssize_t template_size(const Env env, struct tmpl_info* info) {
     size += tmpl_set(info, t);
   } while((call = call->next) && (base = base->next) && ++size);
   size += tmpl_set(info, info->cdef->base.type);
-  return size + 16 + 3;
+  return size + 4;
 }
 
 ANN static inline m_str tmpl_get(struct tmpl_info* info, m_str str) {