]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix message
authorfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 20 Jun 2019 15:34:23 +0000 (17:34 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 20 Jun 2019 15:34:23 +0000 (17:34 +0200)
src/lib/import.c

index 64999711f43da01b9413748ba00c720e5b007e1f..acbc8f2a437b4b70bc3ca8c24b96f183f441c4d0 100644 (file)
@@ -557,7 +557,7 @@ ANN m_int gwi_typedef_ini(const Gwi gwi, const restrict m_str type, const restri
 ANN Type gwi_typedef_end(const Gwi gwi, const ae_flag flag) {
   Type_Decl* td = import_td(gwi, gwi->val.type);
   if(!td)
-    GWI_ERR_O(_("'%s' : invalid type"));
+    GWI_ERR_O(_("'%s' : invalid type"), gwi->val.type);
   td->flag |= flag;
   const Symbol sym = insert_symbol(gwi->gwion->st, gwi->val.name);
   const Stmt stmt = new_stmt_type(gwi->gwion->mp, td, sym);