Fix printing of invalid flags argument of unshare syscall

* clone.c (SYS_FUNC(unshare)): Print 1st argument using printflags_long.
This commit is contained in:
Дмитрий Левин 2016-05-16 22:49:54 +00:00
parent 77ab8dd0bd
commit d06fa28b0e

View File

@ -142,7 +142,7 @@ SYS_FUNC(setns)
SYS_FUNC(unshare)
{
printflags(clone_flags, tcp->u_arg[0], "CLONE_???");
printflags_long(clone_flags, tcp->u_arg[0], "CLONE_???");
return RVAL_DECODED;
}