summaryrefslogtreecommitdiff
path: root/zlib/compress.c
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2023-05-02 10:09:27 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2023-05-02 10:09:27 +0200
commitedd0b03e60f4cc666fbdf16e7b01b97188f2f887 (patch)
tree1124df96972d5aea4a232d83680a8eaea50ed9df /zlib/compress.c
parentddcc9d2281de9fa68525a6808e9181bbd6bf98e0 (diff)
parent55a53949beac6e212b1232d3628d96b9b8121a49 (diff)
downloadmariadb-git-edd0b03e60f4cc666fbdf16e7b01b97188f2f887.tar.gz
Merge branch '10.3' into 10.4
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 e2db404abf8..2ad5326c14e 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) +