diff options
author | Jean-Noel Avila <jn.avila@free.fr> | 2017-11-25 20:55:24 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-26 12:52:17 +0900 |
commit | ed5bdd5babef1dae64ecc2de00480098df115ce4 (patch) | |
tree | a6175da373f9044c305d963aa98f6a26f5387e39 /builtin/submodule--helper.c | |
parent | a9f8a37584a6d3e4702ce115476bebda20d871d3 (diff) | |
download | git-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>
Diffstat (limited to 'builtin/submodule--helper.c')
-rw-r--r-- | builtin/submodule--helper.c | 2 |
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); |