From: fennecdjay Date: Wed, 2 Oct 2019 18:58:59 +0000 (+0200) Subject: :shirt: clean msg X-Git-Tag: nightly~2198^2~173 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=61e022899cd4097a8dacadfdd6de6b77af76a608;p=gwion.git :shirt: clean msg --- 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);