mirror of
https://github.com/curl/curl.git
synced 2026-08-06 12:26:14 +03:00
s/_write/write/g
This commit is contained in:
parent
41e776f9db
commit
9a8ba19b73
1 changed files with 1 additions and 1 deletions
|
|
@ -237,7 +237,7 @@ static int ftruncate64 (int fd, curl_off_t where)
|
|||
if (_lseeki64(fd, where, SEEK_SET) < 0)
|
||||
return -1;
|
||||
|
||||
if (_write(fd, 0, 0) < 0)
|
||||
if (write(fd, 0, 0) < 0)
|
||||
rc = -1;
|
||||
_lseeki64(fd, curr, SEEK_SET);
|
||||
return rc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue