Update openat parser for the RVAL_DECODED change

* open.c (sys_openat): Update for RVAL_DECODED.
This commit is contained in:
Дмитрий Левин 2015-07-17 22:03:29 +00:00
parent d9e87921de
commit 57ae04e402

3
open.c
View File

@ -103,8 +103,7 @@ SYS_FUNC(open)
SYS_FUNC(openat)
{
if (entering(tcp))
print_dirfd(tcp, tcp->u_arg[0]);
print_dirfd(tcp, tcp->u_arg[0]);
return decode_open(tcp, 1);
}