From abdd45f83cea86410536d9a45aa317cc0511d9d2 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Tue, 31 Dec 2019 01:58:57 -0800 Subject: Make ioctl prototype conditional on FUSE_USE_VERSION. (#482) Define FUSE_USE_VERSION < 35 to get old ioctl prototype with int commands; define FUSE_USE_VERSION >= 35 to get new ioctl prototype with unsigned int commands. Fixes #463. --- example/ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/ioctl.c') diff --git a/example/ioctl.c b/example/ioctl.c index eab3061..8fdd8f6 100644 --- a/example/ioctl.c +++ b/example/ioctl.c @@ -22,7 +22,7 @@ * \include ioctl.c */ -#define FUSE_USE_VERSION 31 +#define FUSE_USE_VERSION 35 #include #include -- cgit v1.2.3