Skip to content

Commit 3587180

Browse files
jiangxingitster
authored andcommitted
i18n: fix unmatched single quote in error message
Fixed unmatched single quote introduced by commit: * f56fffe sequencer: teach write_message() to append an optional LF Signed-off-by: Jiang Xin <[email protected]> Acked-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2ae38f2 commit 3587180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ static int write_message(const void *buf, size_t len, const char *filename,
248248
}
249249
if (append_eol && write(msg_fd, "\n", 1) < 0) {
250250
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);
252252
}
253253
if (commit_lock_file(&msg_file) < 0) {
254254
rollback_lock_file(&msg_file);

0 commit comments

Comments
 (0)