diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-12 03:11:40 +0200 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-02-03 21:09:35 +0800 |
commit | d3e833ca1d2abda54648494c33aca73a40a47efe (patch) | |
tree | a5edec646c8efdfa51a3b3987537420e65b5e68b /src/xz/options.c | |
parent | Tests: test_lzip_decoder: Remove trailing white-space. (diff) | |
download | xz-d3e833ca1d2abda54648494c33aca73a40a47efe.tar.xz |
Fix warnings from clang -Wdocumentation.
Diffstat (limited to '')
-rw-r--r-- | src/xz/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xz/options.c b/src/xz/options.c index b434b0cf..f4662131 100644 --- a/src/xz/options.c +++ b/src/xz/options.c @@ -49,13 +49,13 @@ typedef struct { /// is called, which should update the given value to filter-specific /// options structure. /// +/// This returns only if no errors occur. +/// /// \param str String containing the options from the command line /// \param opts Filter-specific option map /// \param set Filter-specific function to update filter_options /// \param filter_options Pointer to filter-specific options structure /// -/// \return Returns only if no errors occur. -/// static void parse_options(const char *str, const option_map *opts, void (*set)(void *filter_options, |