diff options
Diffstat (limited to 'src/unistd/pwrite.c')
-rw-r--r-- | src/unistd/pwrite.c | 2 |
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); |