summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Goergens <matthias.goergens@gmail.com>2023-04-11 11:43:06 +0800
committerNikolaus Rath <Nikolaus@rath.org>2023-04-11 12:21:37 +0100
commit04215e9a9018910a21702c8fb4cc51d95f2f5eef (patch)
treebf1a858aa366006b4e79767aa1e11e10edd1b941
parentc261271aa9eacdc68118aa7237bcbfe17c0a8d63 (diff)
downloadfuse-04215e9a9018910a21702c8fb4cc51d95f2f5eef.tar.gz
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' ```
-rw-r--r--include/fuse.h2
1 files changed, 1 insertions, 1 deletions
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