mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-26 21:54:30 +08:00
Fix FUSE_USE_VERSION in example/notify_store_retrieve.c
This is an addition to commit e75d2c54a3
. 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.
This commit is contained in:
parent
2251a69223
commit
0750b4a194
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user