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 <worldhello.net@gmail.com> Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jiang Xin committed
Nov 20, 2016 at 20:26 UTC
358718064be8a81e2e6b536de5f2b7119156f40d
1 file changed
+1
-1
sequencer.c
+1
-1
@@ -248,7 +248,7 @@ static int write_message(const void *buf, size_t len, const char *filename,
248
}
249
if (append_eol && write(msg_fd, "\n", 1) < 0) {
250
rollback_lock_file(&msg_file);
251
- return error_errno(_("could not write eol to '%s"), filename);
251
+ return error_errno(_("could not write eol to '%s'"), filename);
252
}
253
if (commit_lock_file(&msg_file) < 0) {
254
rollback_lock_file(&msg_file);