aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryangyun <yangyun50@huawei.com>2024-08-19 18:29:23 +0800
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-08-19 13:53:11 +0200
commit0750b4a194019c991d1c8a7f5e59fb5f4be50e3c (patch)
tree65e6426e3ee64d4c504f083d6957c9a14335414a
parent2251a6922393f055b28b39df0ee44e2032169d21 (diff)
downloadlibfuse-0750b4a194019c991d1c8a7f5e59fb5f4be50e3c.tar.gz
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.
-rw-r--r--example/notify_store_retrieve.c2
1 files changed, 1 insertions, 1 deletions
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 <fuse_lowlevel.h>
#include <stdio.h>