summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tapset/aux_syscalls.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index a7370f61..00d90946 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -884,8 +884,8 @@ function _recvflags_str(f) {
/* `man mlockall` for more information */
function _mlockall_flags_str(f) {
- if(f & 2) bs="MCL_CURRENT|".bs
- if(f & 1) bs="MCL_FUTURE|".bs
+ if(f & 1) bs="MCL_CURRENT|".bs
+ if(f & 2) bs="MCL_FUTURE|".bs
return substr(bs,0,strlen(bs)-1)
}