diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-21 13:02:33 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-24 10:56:50 +0200 |
commit | 1946b2b141d8b12c9325ba48d3a04ad8e8206750 (patch) | |
tree | 5e75b0caf4df9159ce54d87296918e7939c3fb28 /src/liblzma/api/lzma | |
parent | Bump version and soname for 5.2.8. (diff) | |
download | xz-1946b2b141d8b12c9325ba48d3a04ad8e8206750.tar.xz |
liblzma: Fix two Doxygen commands in the API headers.
These were caught by clang -Wdocumentation.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/api/lzma/hardware.h | 2 | ||||
-rw-r--r-- | src/liblzma/api/lzma/index_hash.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma/hardware.h b/src/liblzma/api/lzma/hardware.h index 47481f25..7040aae4 100644 --- a/src/liblzma/api/lzma/hardware.h +++ b/src/liblzma/api/lzma/hardware.h @@ -57,7 +57,7 @@ extern LZMA_API(uint64_t) lzma_physmem(void) lzma_nothrow; * If the hardware supports more than one thread per CPU core, the number * of hardware threads is returned if that information is available. * - * \brief On success, the number of available CPU threads or cores is + * \return On success, the number of available CPU threads or cores is * returned. If this information isn't available or an error * occurs, zero is returned. */ diff --git a/src/liblzma/api/lzma/index_hash.h b/src/liblzma/api/lzma/index_hash.h index 9287f1df..8ff41633 100644 --- a/src/liblzma/api/lzma/index_hash.h +++ b/src/liblzma/api/lzma/index_hash.h @@ -52,7 +52,7 @@ extern LZMA_API(void) lzma_index_hash_end( /** * \brief Add a new Record to an Index hash * - * \param index Pointer to a lzma_index_hash structure + * \param index_hash Pointer to a lzma_index_hash structure * \param unpadded_size Unpadded Size of a Block * \param uncompressed_size Uncompressed Size of a Block * |