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 <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jean-Noel Avila committed Nov 25, 2017 at 20:55 UTC ed5bdd5babef1dae64ecc2de00480098df115ce4
1 file changed +1 -1
builtin/submodule--helper.c
+1 -1
@@ -624,7 +624,7 @@ static void status_submodule(const char *path, const struct object_id *ce_oid,
624
625 if (refs_head_ref(get_submodule_ref_store(path),
626 handle_submodule_head_ref, &oid))
627 - die(_("could not resolve HEAD ref inside the"
627 + die(_("could not resolve HEAD ref inside the "
628 "submodule '%s'"), path);
629
630 print_status(flags, '+', path, &oid, displaypath);