diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-07-02 17:37:50 +0200 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-08-01 16:04:57 +0200 |
commit | e75d2c54a347906478724be24bfa1df2638094cb (patch) | |
tree | 2be80182d99633d80b3ad1e32d533d5e8400e4d1 /example/notify_inval_entry.c | |
parent | a8a79341c0c5b16c8d9b6e90b88ef19b481a0d98 (diff) | |
download | libfuse-e75d2c54a347906478724be24bfa1df2638094cb.tar.gz |
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 <bschubert@ddn.com>
Diffstat (limited to 'example/notify_inval_entry.c')
-rw-r--r-- | example/notify_inval_entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <fuse_lowlevel.h> #include <stdio.h> |