umount.c: make use of RVAL_DECODED

* umount.c (sys_umount2): Update for RVAL_DECODED.
This commit is contained in:
Дмитрий Левин 2015-07-16 21:13:27 +00:00
parent c9a199278b
commit c1f37f6e7a

View File

@ -8,10 +8,9 @@
SYS_FUNC(umount2)
{
if (entering(tcp)) {
printstr(tcp, tcp->u_arg[0], -1);
tprints(", ");
printflags(umount_flags, tcp->u_arg[1], "MNT_???");
}
return 0;
printstr(tcp, tcp->u_arg[0], -1);
tprints(", ");
printflags(umount_flags, tcp->u_arg[1], "MNT_???");
return RVAL_DECODED;
}