From 358718064be8a81e2e6b536de5f2b7119156f40d Mon Sep 17 00:00:00 2001 From: Jiang Xin Date: Sun, 20 Nov 2016 20:26:17 +0800 Subject: 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 --- sequencer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.1