Fix printing of invalid flags argument of get_mempolicy syscall

* numa.c (SYS_FUNC(get_mempolicy)): Print 5th argument of syscall
using printxval_long.
This commit is contained in:
Дмитрий Левин 2016-05-16 23:15:06 +00:00
parent 3a0fa5c619
commit 0da9b0e3b2

2
numa.c
View File

@ -111,7 +111,7 @@ SYS_FUNC(get_mempolicy)
tprintf(", %lu, ", tcp->u_arg[2]);
printaddr(tcp->u_arg[3]);
tprints(", ");
printflags(mempolicyflags, tcp->u_arg[4], "MPOL_???");
printflags_long(mempolicyflags, tcp->u_arg[4], "MPOL_???");
}
return 0;
}