Fix doxygen warning about parameter name
authorMatthias Goergens <matthias.goergens@gmail.com>
Tue, 11 Apr 2023 03:43:06 +0000 (11:43 +0800)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 11 Apr 2023 11:21:37 +0000 (12:21 +0100)
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

index 3cf0423f6727e87ecd210aa25703a25c0b0d627e..0d8e79585fbbf0543800a83bf326c0be8b2cd8e4 100644 (file)
@@ -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