X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Ffcntl%2Fposix_fallocate.c;h=bd726242d325a461d66ad505e57f5db5f5ca7351;hp=d6680c142c35ba51159ad767a155a898dd836503;hb=0b6eb2dfb2e84a8a51906e7634f3d5edc230b058;hpb=d30c331d1f3262223a99408ff2d49641a46ce409 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)); }