summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/fs/copy_file_range.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/fs/copy_file_range.rs')
-rw-r--r--vendor/rustix/src/fs/copy_file_range.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/rustix/src/fs/copy_file_range.rs b/vendor/rustix/src/fs/copy_file_range.rs
index 4b118b30e..b927d572b 100644
--- a/vendor/rustix/src/fs/copy_file_range.rs
+++ b/vendor/rustix/src/fs/copy_file_range.rs
@@ -14,7 +14,7 @@ pub fn copy_file_range<InFd: AsFd, OutFd: AsFd>(
off_in: Option<&mut u64>,
fd_out: OutFd,
off_out: Option<&mut u64>,
- len: u64,
-) -> io::Result<u64> {
+ len: usize,
+) -> io::Result<usize> {
backend::fs::syscalls::copy_file_range(fd_in.as_fd(), off_in, fd_out.as_fd(), off_out, len)
}