aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2025-02-10 01:52:08 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-02-10 02:52:08 +0100
commit38da521b762debd93910cea029a08328b6a198bb (patch)
tree36f3159b3228584641f3d9a1ba9b5e3f18bb247b
parent53eefce4e735dd1d8f77ceadfc8beb9679390e08 (diff)
downloadlibfuse-38da521b762debd93910cea029a08328b6a198bb.tar.gz
fuse_new: Fix non symboled call to _fuse_new_317
Acidentally the wrong non-existing function was ccalled. Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r--include/fuse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index ae8d80e..ab0c04a 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -1094,7 +1094,7 @@ fuse_new(struct fuse_args *args,
.padding = 0
};
- return _fuse_new(args, op, op_size, &version, user_data);
+ return _fuse_new_317(args, op, op_size, &version, user_data);
}
#endif /* LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS */
#endif