From: Miklos Szeredi Date: Thu, 14 Jan 2010 09:54:42 +0000 (+0000) Subject: * Fix compile error on FreeBSD. Patch by Jay Sullivan X-Git-Tag: fuse_2_8_2~2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d29bc735ad9d10ca2d71e772d432983c8618fb26;p=qemu-gpiodev%2Flibfuse.git * Fix compile error on FreeBSD. Patch by Jay Sullivan --- diff --git a/ChangeLog b/ChangeLog index 47e6100..1c197e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-01-14 Miklos Szeredi + + * Fix compile error on FreeBSD. Patch by Jay Sullivan + 2009-12-17 Miklos Szeredi * Use '--no-canonicalize' option of mount(8) (available in diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 7385de1..c519bfb 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -1728,7 +1728,7 @@ out_free: /* * This is currently not implemented on other than Linux... */ -int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[]); +int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[]) { return -ENOSYS; }