Fix FUSE_USE_VERSION in example/

This is an addition to commit a8f1ae35af, which
introduced the 312 API, but didn't set the right
API version in all examples.

Signed-off-by: Bernd Schubert <bschubert@ddn.com>
This commit is contained in:
Bernd Schubert 2024-07-02 17:37:50 +02:00 committed by Bernd Schubert
parent a8a79341c0
commit e75d2c54a3
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
* \include hello_ll.c
*/
#define FUSE_USE_VERSION 34
#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12)
#include <fuse_lowlevel.h>
#include <stdio.h>

View File

@ -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>

View File

@ -59,7 +59,7 @@
*/
#define FUSE_USE_VERSION 34
#define FUSE_USE_VERSION FUSE_MAKE_VERSION(3, 12)
#include <fuse_lowlevel.h>
#include <stdio.h>