]> Nishi Git Mirror - gwion.git/commitdiff
:art: error message
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 1 Sep 2019 07:44:41 +0000 (09:44 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 1 Sep 2019 07:44:41 +0000 (09:44 +0200)
src/parse/scan1.c

index bc5278b6414a2b9b7fc3510d8691c3031a27f987..c32a0ea448a7c093e0afc200bc382d5398e6b15c 100644 (file)
@@ -32,7 +32,7 @@ ANN static m_bool type_recursive(const Env env, const Type_Decl *td, const Type
       for(m_uint i = 0; i < vector_size(&t->e->contains); ++i) {
         if(env->class_def == (Type)vector_at(&t->e->contains, i) && !GET_FLAG(td, ref))
           ERR_B(td_pos(td), _("%s declared inside %s\n. (make it a ref ?)"),
-              t, t == env->class_def ? "itself" : env->class_def->name);
+              t->name, t == env->class_def ? "itself" : env->class_def->name);
       }
     }
   }