fchownat.c: make use of RVAL_DECODED

* fchownat.c (sys_fchownat): Update for RVAL_DECODED.
This commit is contained in:
Дмитрий Левин 2015-07-20 13:50:55 +00:00
parent b6d80ffe02
commit f891bb4373

View File

@ -2,13 +2,12 @@
SYS_FUNC(fchownat)
{
if (entering(tcp)) {
print_dirfd(tcp, tcp->u_arg[0]);
printpath(tcp, tcp->u_arg[1]);
printuid(", ", tcp->u_arg[2]);
printuid(", ", tcp->u_arg[3]);
tprints(", ");
printflags(at_flags, tcp->u_arg[4], "AT_???");
}
return 0;
print_dirfd(tcp, tcp->u_arg[0]);
printpath(tcp, tcp->u_arg[1]);
printuid(", ", tcp->u_arg[2]);
printuid(", ", tcp->u_arg[3]);
tprints(", ");
printflags(at_flags, tcp->u_arg[4], "AT_???");
return RVAL_DECODED;
}