about summary refs log tree commit diff
path: root/src/unistd/pread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pread.c')
-rw-r--r--src/unistd/pread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/pread.c b/src/unistd/pread.c
index 3d2799fd..5483eb9d 100644
--- a/src/unistd/pread.c
+++ b/src/unistd/pread.c
@@ -4,7 +4,7 @@
 
 ssize_t pread(int fd, void *buf, size_t size, off_t ofs)
 {
-	return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_O(ofs));
+	return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_PRW(ofs));
 }
 
 LFS64(pread);