From 61e022899cd4097a8dacadfdd6de6b77af76a608 Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Wed, 2 Oct 2019 20:58:59 +0200 Subject: [PATCH] :shirt: clean msg --- src/parse/scan1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse/scan1.c b/src/parse/scan1.c index 42e78f61..056f0a8c 100644 --- a/src/parse/scan1.c +++ b/src/parse/scan1.c @@ -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); -- 2.43.0