summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Noel Avila <jn.avila@free.fr>2017-11-25 20:55:24 +0100
committerJunio C Hamano <gitster@pobox.com>2017-11-26 12:52:17 +0900
commited5bdd5babef1dae64ecc2de00480098df115ce4 (patch)
treea6175da373f9044c305d963aa98f6a26f5387e39
parenta9f8a37584a6d3e4702ce115476bebda20d871d3 (diff)
downloadgit-ed5bdd5babef1dae64ecc2de00480098df115ce4.tar.gz
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>
-rw-r--r--builtin/submodule--helper.c2
1 files changed, 1 insertions, 1 deletions
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);