From: Dmitry V. Levin Date: Thu, 16 Jul 2015 21:13:27 +0000 (+0000) Subject: umount.c: make use of RVAL_DECODED X-Git-Tag: v4.11~444 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1f37f6e7ad44ce90bed1b86b22543c47847c7b3;p=strace umount.c: make use of RVAL_DECODED * umount.c (sys_umount2): Update for RVAL_DECODED. --- diff --git a/umount.c b/umount.c index b015f838..8755afc9 100644 --- a/umount.c +++ b/umount.c @@ -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; }