From: Jiang Xin Date: Sun, 20 Nov 2016 12:26:17 +0000 (+0800) Subject: i18n: fix unmatched single quote in error message X-Git-Tag: v2.11.0-rc3~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=358718064b;p=thirdparty%2Fgit.git i18n: fix unmatched single quote in error message Fixed unmatched single quote introduced by commit: * f56fffef9a sequencer: teach write_message() to append an optional LF Signed-off-by: Jiang Xin Acked-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/sequencer.c b/sequencer.c index fae2bbd2ba..c3bb0e6567 100644 --- a/sequencer.c +++ b/sequencer.c @@ -248,7 +248,7 @@ static int write_message(const void *buf, size_t len, const char *filename, } if (append_eol && write(msg_fd, "\n", 1) < 0) { rollback_lock_file(&msg_file); - return error_errno(_("could not write eol to '%s"), filename); + return error_errno(_("could not write eol to '%s'"), filename); } if (commit_lock_file(&msg_file) < 0) { rollback_lock_file(&msg_file);