]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: clean msg
authorfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 2 Oct 2019 18:58:59 +0000 (20:58 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 2 Oct 2019 18:58:59 +0000 (20:58 +0200)
src/parse/scan1.c

index 42e78f612a77d72bf19ce1515efbe3007fb9c97f..056f0a8c7bf25012486246373dd73354fad07887 100644 (file)
@@ -73,7 +73,7 @@ ANN m_bool scan1_exp_decl(const Env env, const Exp_Decl* decl) {
   CHECK_OB(decl->type)
   const m_bool global = GET_FLAG(decl->td, global);
   if(global && decl->type->e->owner != env->global_nspc)
-    ERR_B(exp_self(decl)->pos, _("type '%s' is not global\n"), decl->type->name)
+    ERR_B(exp_self(decl)->pos, _("type '%s' is not global"), decl->type->name)
   if(env->context)
     env->context->global = 1;
   const m_uint scope = !global ? env->scope->depth : env_push_global(env);