inotify_init1: mark return code with RVAL_FD flag

* inotify.c (sys_inotify_init1): Set RVAL_FD flag in the return code.
This commit is contained in:
Дмитрий Левин 2015-08-02 01:34:57 +00:00
parent 5d22f0742a
commit 323d912e0c

View File

@ -32,5 +32,5 @@ SYS_FUNC(inotify_init1)
{
printflags(inotify_init_flags, tcp->u_arg[0], "IN_???");
return RVAL_DECODED;
return RVAL_DECODED | RVAL_FD;
}