From 761e053ea8acdf70dea121c24fd7a0011684930e Mon Sep 17 00:00:00 2001 From: jjl Date: Mon, 24 May 2021 16:23:39 +0200 Subject: [PATCH] Change loff_t to off_t --- rusturing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rusturing.c b/rusturing.c index 0b5e98d..25aed88 100644 --- a/rusturing.c +++ b/rusturing.c @@ -41,8 +41,8 @@ extern inline void rust_io_uring_prep_rw(int op, } extern inline void rust_io_uring_prep_splice(struct io_uring_sqe *sqe, - int fd_in, loff_t off_in, - int fd_out, loff_t off_out, + int fd_in, off_t off_in, + int fd_out, off_t off_out, unsigned int nbytes, unsigned int splice_flags) {