diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-02-10 01:52:08 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-10 02:52:08 +0100 |
commit | 38da521b762debd93910cea029a08328b6a198bb (patch) | |
tree | 36f3159b3228584641f3d9a1ba9b5e3f18bb247b | |
parent | 53eefce4e735dd1d8f77ceadfc8beb9679390e08 (diff) | |
download | libfuse-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.h | 2 |
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 |