From: Jean-Noel Avila Date: Sat, 25 Nov 2017 19:55:24 +0000 (+0100) Subject: submodule--helper.c: i18n: add a missing space in message X-Git-Tag: v2.16.0-rc0~61^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/ed5bdd5babef1dae64ecc2de00480098df115ce4?ds=inline submodule--helper.c: i18n: add a missing space in message The message spans over 2 lines but the C concatenation does not add the needed space between the two lines. Signed-off-by: Jean-Noel Avila Signed-off-by: Junio C Hamano --- diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index a4193c01d9..8a0b955a5d 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -624,7 +624,7 @@ static void status_submodule(const char *path, const struct object_id *ce_oid, if (refs_head_ref(get_submodule_ref_store(path), handle_submodule_head_ref, &oid)) - die(_("could not resolve HEAD ref inside the" + die(_("could not resolve HEAD ref inside the " "submodule '%s'"), path); print_status(flags, '+', path, &oid, displaypath);