From: Bernd Schubert Date: Mon, 10 Feb 2025 00:52:08 +0000 (+0100) Subject: fuse_new: Fix non symboled call to _fuse_new_317 X-Git-Tag: fuse-3.17.1-rc0~4 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4f025ae22e30e15f6f4bceef7c90dd13d1eac693;p=qemu-gpiodev%2Flibfuse.git fuse_new: Fix non symboled call to _fuse_new_317 Acidentally the wrong non-existing function was ccalled. Signed-off-by: Bernd Schubert --- 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