diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-01-17 08:20:21 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-01-17 08:20:21 +0100 |
| commit | b804c4b72c96630d57166d4d7b94fb104122e95e (patch) | |
| tree | d201716df848c30dbf1f41ce1836996474fea8cc /zlib/compress.c | |
| parent | 71eda122e8649df6f78e8972119c161c75a2056b (diff) | |
Update bundled zlib to version 1.2.13 (13 oct 2022)
Diffstat (limited to 'zlib/compress.c')
| -rw-r--r-- | zlib/compress.c | 6 |
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) + |
