Skip to content

Commit 7f1dc9f

Browse files
committed
Merge branch 'js/prepare-sequencer'
Fix for an error message string. * js/prepare-sequencer: i18n: fix unmatched single quote in error message
2 parents 1310aff + 3587180 commit 7f1dc9f

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)