aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorGravatar userwithuid <userwithuid@gmail.com>2017-08-14 15:08:41 +0000
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-08-14 20:02:28 +0200
commit811c808b1d28bdea7a1b0bb0e5bafb9dfbe9b3bb (patch)
tree1c73c4b3904a6f5de50a8f06b99bcd2e2afb64f6 /lib/fuse_i.h
parenta42e548d76ced251f65f769374c3c3984d1c219e (diff)
directly call fuse_new_31() instead of fuse_new() internally
this fixes building with lto, which failed since commit 503e32d01e4db00e90d7acfd81ab05386559069f
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 54466f6..80849ec 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -125,3 +125,6 @@ int fuse_session_receive_buf_int(struct fuse_session *se, struct fuse_buf *buf,
struct fuse_chan *ch);
void fuse_session_process_buf_int(struct fuse_session *se,
const struct fuse_buf *buf, struct fuse_chan *ch);
+
+struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op,
+ size_t op_size, void *private_data);