aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAmir Goldstein <amir73il@gmail.com>2025-01-01 18:16:43 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-02-10 16:56:45 +0100
commitada5f158064505f8c1870b0ab046e6f8e45c6475 (patch)
treeabdcc6372ac77c2fb7c5b2665cdab7a2d4f941d8 /include
parent8899806d836e45d3fa4b97c1cb30dc2bfee90e91 (diff)
downloadlibfuse-ada5f158064505f8c1870b0ab046e6f8e45c6475.tar.gz
Fix libfuse build with FUSE_USE_VERSION 30
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 2fc1b6f..dbfa439 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -1013,7 +1013,9 @@ struct fuse *_fuse_new(struct fuse_args *args,
#if FUSE_USE_VERSION == 30
struct fuse *_fuse_new_30(struct fuse_args *args,
const struct fuse_operations *op,
- size_t op_size, void *user_data);
+ size_t op_size,
+ struct libfuse_version *version,
+ void *user_data);
static inline struct fuse *
fuse_new(struct fuse_args *args,
const struct fuse_operations *op, size_t op_size,