diff options
-rw-r--r-- | src/fcntl/posix_fadvise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcntl/posix_fadvise.c b/src/fcntl/posix_fadvise.c index d5360e0f..fc1562e2 100644 --- a/src/fcntl/posix_fadvise.c +++ b/src/fcntl/posix_fadvise.c @@ -4,7 +4,7 @@ int posix_fadvise(int fd, off_t base, off_t len, int advice) { - return -(__syscall)(SYS_fadvise, fd, __SYSCALL_LL_O(base), + return -__syscall(SYS_fadvise, fd, __SYSCALL_LL_O(base), __SYSCALL_LL_E(len), advice); } |