aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
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 16:56:45 +0100
commit4f025ae22e30e15f6f4bceef7c90dd13d1eac693 (patch)
tree36f3159b3228584641f3d9a1ba9b5e3f18bb247b /include/fuse.h
parentc49c518f271068f4b562c6c617b6df0550a49dff (diff)
downloadlibfuse-4f025ae22e30e15f6f4bceef7c90dd13d1eac693.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>
Diffstat (limited to 'include/fuse.h')
-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