From: Dmitry V. Levin Date: Sun, 2 Aug 2015 01:31:40 +0000 (+0000) Subject: fanotify_init: mark return code with RVAL_FD flag X-Git-Tag: v4.11~293 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d22f0742a3a5df57780ffafd5315897935fa525;p=strace fanotify_init: mark return code with RVAL_FD flag * fanotify.c (sys_fanotify_init): Set RVAL_FD flag in the return code. --- diff --git a/fanotify.c b/fanotify.c index 1c3b7f26..74b1d927 100644 --- a/fanotify.c +++ b/fanotify.c @@ -24,7 +24,7 @@ SYS_FUNC(fanotify_init) tprints(", "); tprint_open_modes((unsigned) tcp->u_arg[1]); - return RVAL_DECODED; + return RVAL_DECODED | RVAL_FD; } #include "xlat/fan_mark_flags.h"