aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-13 13:22:12 +0200
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-07-13 13:22:12 +0200
commit5a5edc3353f468600933112422f080004189a665 (patch)
tree2cbd9199e1cf931e4344c06750ea2ed9d9afcf35 /lib
parent503e32d01e4db00e90d7acfd81ab05386559069f (diff)
fuse_new_30(): call fuse_new_31(), not fuse_new()
I believe this function call is resolved by the compiler, not the linker, so this seems safer. Thanks to Chris Clayton for spotting this.
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 5160eb1..08dab22 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -4647,7 +4647,7 @@ struct fuse *fuse_new_30(struct fuse_args *args,
fuse_lib_help(args);
return NULL;
} else
- return fuse_new(args, op, op_size, user_data);
+ return fuse_new_31(args, op, op_size, user_data);
}
/* Explicit prototype to prevent compiler warnings