diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-12 03:11:40 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-12 03:11:40 +0200 |
commit | 6c886cc5b3c90c6a75e6be8b1278ec2261e452a6 (patch) | |
tree | 6ecee30ee5ad380354678ab63307a364a43b2f6a /src/xz/options.c | |
parent | Tests: test_lzip_decoder: Remove trailing white-space. (diff) | |
download | xz-6c886cc5b3c90c6a75e6be8b1278ec2261e452a6.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, |