From 04215e9a9018910a21702c8fb4cc51d95f2f5eef Mon Sep 17 00:00:00 2001 From: Matthias Goergens Date: Tue, 11 Apr 2023 11:43:06 +0800 Subject: Fix doxygen warning about parameter name Before: ``` $ doxygen doc/Doxyfile /Users/matthias/prog/fuser/libfuse/include/fuse.h:934: warning: argument 'private_data' of command @param is not found in the argument list of fuse_new_31(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) /Users/matthias/prog/fuser/libfuse/include/fuse.h:934: warning: The following parameter of fuse_new_31(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) is not documented: parameter 'user_data' ``` --- include/fuse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fuse.h b/include/fuse.h index 3cf0423..0d8e795 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -968,7 +968,7 @@ struct fuse *fuse_new(struct fuse_args *args, const struct fuse_operations *op, #else /* LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS */ struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op, - size_t op_size, void *user_data); + size_t op_size, void *private_data); #define fuse_new(args, op, size, data) fuse_new_31(args, op, size, data) #endif /* LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS */ #endif -- cgit v1.2.1