aboutsummaryrefslogtreecommitdiff
path: root/common/zlib.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2014-08-29 03:28:00 +0200
committerEinar Johan Trøan Sømåen2014-08-29 03:28:00 +0200
commitb7c5ce879fc386d815654fb128bf1c9a5973eefb (patch)
tree2c2521cb3022aa9a2120b18f3a2ccfaaebc75235 /common/zlib.h
parent0593c2eab29e61692738dd8d88cfa88501803f0d (diff)
downloadscummvm-rg350-b7c5ce879fc386d815654fb128bf1c9a5973eefb.tar.gz
scummvm-rg350-b7c5ce879fc386d815654fb128bf1c9a5973eefb.tar.bz2
scummvm-rg350-b7c5ce879fc386d815654fb128bf1c9a5973eefb.zip
COMMON: Fix some Doxygen comments that seem wrong.
Diffstat (limited to 'common/zlib.h')
-rw-r--r--common/zlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/zlib.h b/common/zlib.h
index e2936a334a..5adba64076 100644
--- a/common/zlib.h
+++ b/common/zlib.h
@@ -68,7 +68,7 @@ bool uncompress(byte *dst, unsigned long *dstLen, const byte *src, unsigned long
* @param dst the buffer to store into.
* @param dstLen the size of the destination buffer.
* @param src the data to be decompressed.
- * @param dstLen the size of the compressed data.
+ * @param srcLen the size of the compressed data.
* @param dict (optional) a decompress dictionary.
* @param dictLen (optional) the size of the dictionary.
* Mandatory if dict is not 0.
@@ -90,7 +90,7 @@ bool inflateZlibHeaderless(byte *dst, uint dstLen, const byte *src, uint srcLen,
* @param dst the buffer to store into.
* @param dstLen the size of the destination buffer.
* @param src the data to be decompressed.
- * @param dstLen the size of the compressed data.
+ * @param srcLen the size of the compressed data.
*
* @return true on success (Z_OK or Z_STREAM_END), false otherwise.
*/