From 323d912e0c4fa035765638d5082f5ef8f9c0580d Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Sun, 2 Aug 2015 01:34:57 +0000 Subject: [PATCH] inotify_init1: mark return code with RVAL_FD flag * inotify.c (sys_inotify_init1): Set RVAL_FD flag in the return code. --- inotify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1