From 8771b17229c0b19f74789455913b10c1c5eaa320 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Fri, 11 Aug 2017 10:26:28 +0200 Subject: Fix unused variable warnings under FreeBSD. --- lib/fuse_lowlevel.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/fuse_lowlevel.c') diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 34bff00..ff7de82 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -2978,6 +2978,7 @@ out_free: */ int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[]) { + (void) req; (void) size; (void) list; return -ENOSYS; } #endif -- cgit v1.2.3