Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
remove left-over cast fixes #3160
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Zinkovsky committed Apr 23, 2012
1 parent 21bee8c commit e6d4bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/fs.c
Expand Up @@ -913,7 +913,7 @@ static DWORD WINAPI uv_fs_thread_proc(void* parameter) {
fs__fsync(req, (uv_file)req->arg0);
break;
case UV_FS_FTRUNCATE:
fs__ftruncate(req, (uv_file)req->arg0, (off_t)req->stat.st_atime);
fs__ftruncate(req, (uv_file)req->arg0, req->stat.st_atime);
break;
case UV_FS_SENDFILE:
fs__sendfile(req,
Expand Down

0 comments on commit e6d4bca

Please sign in to comment.