]> Nishi Git Mirror - gwion.git/commitdiff
:bug: small fix
authorfennecdjay <fennecdjay@gmail.com>
Sat, 28 Jan 2023 13:25:21 +0000 (14:25 +0100)
committerfennecdjay <fennecdjay@gmail.com>
Sat, 28 Jan 2023 13:25:21 +0000 (14:25 +0100)
src/parse/operator.c

index c054b103aad11ef2d8005ecaad51b9a67dc0f3bc..6cfd30c15d67a162398d4ade30a56c4dfa256ba6 100644 (file)
@@ -243,7 +243,7 @@ ANN static Type op_def(const Env env, struct Op_Import *const opi,
                 const Func_Def fdef) {
   const Func_Def tmpl_fdef    = cpy_func_def(env->gwion->mp, fdef);
   tmpl_fdef->base->tmpl->call = new_mp_vector(env->gwion->mp,
-    sizeof(Type_Decl*), fdef->base->tmpl->list->len);
+    Type_Decl*, fdef->base->tmpl->list->len);
   if (opi->lhs) {
      uint32_t idx = 0;
      const Type lhs = find_type(env, mp_vector_at(fdef->base->args, Arg, 0)->td);