summaryrefslogtreecommitdiff
path: root/src/fcntl/posix_fallocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fcntl/posix_fallocate.c')
-rw-r--r--src/fcntl/posix_fallocate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fcntl/posix_fallocate.c b/src/fcntl/posix_fallocate.c
index d6680c14..bd726242 100644
--- a/src/fcntl/posix_fallocate.c
+++ b/src/fcntl/posix_fallocate.c
@@ -3,6 +3,6 @@
int posix_fallocate(int fd, off_t base, off_t len)
{
- return -__syscall(SYS_fallocate, fd, __SYSCALL_LL(base),
- __SYSCALL_LL(len));
+ return -__syscall(SYS_fallocate, fd, __SYSCALL_LL_O(base),
+ __SYSCALL_LL_E(len));
}