From: Bernd Schubert Date: Tue, 2 Jul 2024 15:37:50 +0000 (+0200) Subject: Fix FUSE_USE_VERSION in example/ X-Git-Tag: fuse-3.17.1-rc0~84 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e75d2c54a347906478724be24bfa1df2638094cb;p=qemu-gpiodev%2Flibfuse.git Fix FUSE_USE_VERSION in example/ This is an addition to commit a8f1ae35af66, which introduced the 312 API, but didn't set the right API version in all examples. Signed-off-by: Bernd Schubert --- diff --git a/example/hello_ll.c b/example/hello_ll.c index 28bd1c4..0fcb7fe 100644 --- a/example/hello_ll.c +++ b/example/hello_ll.c @@ -18,7 +18,7 @@ * \include hello_ll.c */ -#define FUSE_USE_VERSION 34 +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12) #include #include diff --git a/example/notify_inval_entry.c b/example/notify_inval_entry.c index dd2af92..1060d50 100644 --- a/example/notify_inval_entry.c +++ b/example/notify_inval_entry.c @@ -76,7 +76,7 @@ */ -#define FUSE_USE_VERSION 34 +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12) #include #include diff --git a/example/notify_inval_inode.c b/example/notify_inval_inode.c index db24335..99631cc 100644 --- a/example/notify_inval_inode.c +++ b/example/notify_inval_inode.c @@ -59,7 +59,7 @@ */ -#define FUSE_USE_VERSION 34 +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12) #include #include