aboutsummaryrefslogtreecommitdiff
path: root/lib/helper.c
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/helper.c
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/helper.c')
-rw-r--r--lib/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/helper.c b/lib/helper.c
index 9abc6dd..9d26c14 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -302,7 +302,7 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
}
- fuse = fuse_new(&args, op, op_size, user_data);
+ fuse = fuse_new_31(&args, op, op_size, user_data);
if (fuse == NULL) {
res = 1;
goto out1;