diff options
author | ZheNing Hu <adlternative@gmail.com> | 2022-09-11 14:03:17 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-09-12 09:25:40 -0700 |
commit | 746aae3dd1a8e8dba31797ac237916d9533e4254 (patch) | |
tree | b5f30904295d8d843031c0aa55adbeec540a06d8 /builtin/ls-files.c | |
parent | ce74de931d7aea9746e37632534eacc63b0c1a90 (diff) |
ls-files: fix black space in error message
ce74de9(ls-files: introduce "--format" option) miss
a space between two words incorrectly, it leads to
wrong i10n messages. So fix it by adding a space at
the end of the error message.
Signed-off-by: ZheNing Hu <adlternative@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/ls-files.c')
-rw-r--r-- | builtin/ls-files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/ls-files.c b/builtin/ls-files.c index 779dc18e59..4cf8a23648 100644 --- a/builtin/ls-files.c +++ b/builtin/ls-files.c @@ -257,7 +257,7 @@ static size_t expand_show_index(struct strbuf *sb, const char *start, end = strchr(start + 1, ')'); if (!end) - die(_("bad ls-files format: element '%s'" + die(_("bad ls-files format: element '%s' " "does not end in ')'"), start); len = end - start + 1; |