From dfab1eac2362dfcac7c96a43c3938d8ec67d7722 Mon Sep 17 00:00:00 2001 From: Jean-Noel Avila Date: Sun, 8 Oct 2017 14:18:39 +0200 Subject: [PATCH] i18n: add a missing space in message The message spans over 2 lines but the C conconcatenation does not add the needed space between the two lines. Signed-off-by: Jean-Noel Avila Signed-off-by: Junio C Hamano --- sequencer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequencer.c b/sequencer.c index c54596f969..b7e0a3864c 100644 --- a/sequencer.c +++ b/sequencer.c @@ -2536,7 +2536,7 @@ static enum check_level get_missing_commit_check_level(void) return CHECK_WARN; if (!strcasecmp("error", value)) return CHECK_ERROR; - warning(_("unrecognized setting %s for option" + warning(_("unrecognized setting %s for option " "rebase.missingCommitsCheck. Ignoring."), value); return CHECK_IGNORE; } -- 2.11.4.GIT