]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Use full path in ref_type
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 12 May 2022 18:55:36 +0000 (20:55 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 12 May 2022 18:55:36 +0000 (20:55 +0200)
src/lib/ref.c

index 504e06447f0c10c027b3f18deb56bfb59de5cef0..8d9e620a16ba8ecfae55e6f7279bf59e15b2615c 100644 (file)
@@ -18,8 +18,9 @@
 #include "tmpl_info.h"
 
 ANN Type ref_type(const Gwion gwion, const Type t, const loc_t loc) {
-  char c[7 + strlen(t->name)];
-  sprintf(c, "Ref:[%s]", t->name);
+  const m_str name = type2str(gwion, t, loc);
+  char c[7 + strlen(name)];
+  sprintf(c, "Ref:[%s]", name);
   return str2type(gwion, c, loc);
 }