summaryrefslogtreecommitdiff
path: root/src/mman/mlockall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mman/mlockall.c')
-rw-r--r--src/mman/mlockall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mman/mlockall.c b/src/mman/mlockall.c
index 782fc9db..0ba4e662 100644
--- a/src/mman/mlockall.c
+++ b/src/mman/mlockall.c
@@ -3,5 +3,5 @@
int mlockall(int flags)
{
- return syscall1(__NR_mlockall, flags);
+ return syscall(SYS_mlockall, flags);
}