From 38da521b762debd93910cea029a08328b6a198bb Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Mon, 10 Feb 2025 01:52:08 +0100 Subject: fuse_new: Fix non symboled call to _fuse_new_317 Acidentally the wrong non-existing function was ccalled. Signed-off-by: Bernd Schubert --- include/fuse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/fuse.h') 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 -- cgit v1.2.3