Commit 4245400a authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Fixed _write() arguments.
parent 629bba6b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -230,7 +230,7 @@ static int ftruncate (int fd, curl_off_t where)
  if (_lseeki64(fd, where, SEEK_SET) < 0)
     return -1;

  if (_write(fd, curr, SEEK_SET) < 0)
  if (_write(fd, 0, 0) < 0)
     rc = -1;
  _lseeki64(fd, curr, SEEK_SET);
  return rc;