소스 검색

libuv: Update uv__fs_copy_file_range signature in cmake-bootstrap.c

Brad King 4 년 전
부모
커밋
0decc36fb1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Utilities/cmlibuv/src/unix/cmake-bootstrap.c

+ 2 - 2
Utilities/cmlibuv/src/unix/cmake-bootstrap.c

@@ -136,8 +136,8 @@ int uv__statx(int dirfd,
   return -1;
 }
 
-ssize_t uv__fs_copy_file_range(int fd_in, ssize_t* off_in,
-                               int fd_out, ssize_t* off_out,
+ssize_t uv__fs_copy_file_range(int fd_in, off_t* off_in,
+                               int fd_out, off_t* off_out,
                                size_t len, unsigned int flags)
 {
   errno = ENOSYS;