summaryrefslogtreecommitdiff
path: root/src/unistd/pwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pwrite.c')
-rw-r--r--src/unistd/pwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/pwrite.c b/src/unistd/pwrite.c
index 224eacdd..bbe4c345 100644
--- a/src/unistd/pwrite.c
+++ b/src/unistd/pwrite.c
@@ -4,7 +4,7 @@
ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
{
- return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL(ofs));
+ return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL_O(ofs));
}
LFS64(pwrite);