From: Miklos Szeredi Date: Fri, 12 Dec 2014 08:49:05 +0000 (+0100) Subject: fuse: reduce max out args X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f704dcb538eb80b7f5b26281a79b8e29a8e24d62;p=linux.git fuse: reduce max out args The third out-arg is never actually used. Signed-off-by: Miklos Szeredi --- diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 416fee2ee1bc1..351c098307b81 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -213,7 +213,7 @@ struct fuse_out { unsigned numargs; /** Array of arguments */ - struct fuse_arg args[3]; + struct fuse_arg args[2]; }; /** FUSE page descriptor */