summaryrefslogtreecommitdiff
path: root/zlib/compress.c
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-17 08:20:21 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-17 08:20:21 +0100
commitb804c4b72c96630d57166d4d7b94fb104122e95e (patch)
treed201716df848c30dbf1f41ce1836996474fea8cc /zlib/compress.c
parent71eda122e8649df6f78e8972119c161c75a2056b (diff)
Update bundled zlib to version 1.2.13 (13 oct 2022)
Diffstat (limited to 'zlib/compress.c')
-rw-r--r--zlib/compress.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/zlib/compress.c b/zlib/compress.c
index e2db404ab..2ad5326c1 100644
--- a/zlib/compress.c
+++ b/zlib/compress.c
@@ -19,7 +19,7 @@
memory, Z_BUF_ERROR if there was not enough room in the output buffer,
Z_STREAM_ERROR if the level parameter is invalid.
*/
-int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
+int ZEXPORT compress2(dest, destLen, source, sourceLen, level)
Bytef *dest;
uLongf *destLen;
const Bytef *source;
@@ -65,7 +65,7 @@ int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
/* ===========================================================================
*/
-int ZEXPORT compress (dest, destLen, source, sourceLen)
+int ZEXPORT compress(dest, destLen, source, sourceLen)
Bytef *dest;
uLongf *destLen;
const Bytef *source;
@@ -78,7 +78,7 @@ int ZEXPORT compress (dest, destLen, source, sourceLen)
If the default memLevel or windowBits for deflateInit() is changed, then
this function needs to be updated.
*/
-uLong ZEXPORT compressBound (sourceLen)
+uLong ZEXPORT compressBound(sourceLen)
uLong sourceLen;
{
return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +