Skip to content

Commit 570676e

Browse files
committed
Merge branch 'js/rebase-i-final'
Error message fix. * js/rebase-i-final: sequencer.c: unify an error message
2 parents 2ac9cf7 + 27f90c2 commit 570676e

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
@@ -2948,7 +2948,7 @@ int rearrange_squash(void)
29482948
if (fd < 0)
29492949
res = error_errno(_("could not open '%s'"), todo_file);
29502950
else if (write(fd, buf.buf, buf.len) < 0)
2951-
res = error_errno(_("could not write '%s'"), todo_file);
2951+
res = error_errno(_("could not write to '%s'"), todo_file);
29522952
else if (ftruncate(fd, buf.len) < 0)
29532953
res = error_errno(_("could not truncate '%s'"),
29542954
todo_file);

0 commit comments

Comments
 (0)