bisect: fix a regression causing a segfault
[gitweb.git] / sequencer.c
index e258bb6469a77123b191f85ba679e446ef9c73b6..f2a10cc4f24c10adf072eb26ba427f00037b3c79 100644 (file)
@@ -2948,9 +2948,9 @@ int rearrange_squash(void)
                if (fd < 0)
                        res = error_errno(_("could not open '%s'"), todo_file);
                else if (write(fd, buf.buf, buf.len) < 0)
-                       res = error_errno(_("could not read '%s'."), todo_file);
+                       res = error_errno(_("could not write to '%s'"), todo_file);
                else if (ftruncate(fd, buf.len) < 0)
-                       res = error_errno(_("could not finish '%s'"),
+                       res = error_errno(_("could not truncate '%s'"),
                                           todo_file);
                close(fd);
                strbuf_release(&buf);