From 0750b4a194019c991d1c8a7f5e59fb5f4be50e3c Mon Sep 17 00:00:00 2001 From: yangyun Date: Mon, 19 Aug 2024 18:29:23 +0800 Subject: [PATCH] Fix FUSE_USE_VERSION in example/notify_store_retrieve.c This is an addition to commit e75d2c54a347. This example sets FUSE_USE_VERSION = 34 but uses fuse_loop_cfg_* APIs, which is not allowed since these APIs are not introduced in version 34. --- example/notify_store_retrieve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/notify_store_retrieve.c b/example/notify_store_retrieve.c index 7669612..42e6eb0 100644 --- a/example/notify_store_retrieve.c +++ b/example/notify_store_retrieve.c @@ -58,7 +58,7 @@ */ -#define FUSE_USE_VERSION 34 +#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12) #include #include -- 2.30.2