From: Dmitry V. Levin Date: Sun, 2 Aug 2015 01:34:57 +0000 (+0000) Subject: inotify_init1: mark return code with RVAL_FD flag X-Git-Tag: v4.11~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=323d912e0c4fa035765638d5082f5ef8f9c0580d;p=strace inotify_init1: mark return code with RVAL_FD flag * inotify.c (sys_inotify_init1): Set RVAL_FD flag in the return code. --- diff --git a/inotify.c b/inotify.c index 85fc59c5..98d24f28 100644 --- a/inotify.c +++ b/inotify.c @@ -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; }