From: Matthias Goergens Date: Tue, 11 Apr 2023 03:43:06 +0000 (+0800) Subject: Fix doxygen warning about parameter name X-Git-Tag: fuse-3.15.0~19 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=04215e9a9018910a21702c8fb4cc51d95f2f5eef;p=qemu-gpiodev%2Flibfuse.git 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' ``` --- 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