aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_lowlevel.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-11 10:26:28 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-11 10:32:39 +0200
commit8771b17229c0b19f74789455913b10c1c5eaa320 (patch)
treeb16744198971dc7b0355cb4688249c37dae5dacc /lib/fuse_lowlevel.c
parent9578a512a6a668d42978bbc98f48fb36b0bd7f12 (diff)
Fix unused variable warnings under FreeBSD.
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r--lib/fuse_lowlevel.c1
1 files changed, 1 insertions, 0 deletions
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