mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-26 21:54:30 +08:00
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:
parent
a8a79341c0
commit
e75d2c54a3
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user