This commit is contained in:
Gisle Vanem 2004-12-17 18:31:40 +00:00
Родитель 41e776f9db
Коммит 9a8ba19b73
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;