summaryrefslogtreecommitdiff
path: root/zlib/compress.c
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2023-04-20 17:05:38 +0200
committerSergei Golubchik <serg@mariadb.org>2023-04-20 17:06:19 +0200
commit01199901d891c52689f1ca9e3fb7a3222b09d18f (patch)
tree98fe52b98877a15bd36c0bdf27c47a921b917b85 /zlib/compress.c
parent4c4939bbf619d7e516131c0b3e5691b1c2d2ff8f (diff)
parent3bab137f58127c35c2eba5e052598bff5d59853b (diff)
downloadmariadb-git-bb-10.3-serg.tar.gz
Merge branch 'merge-zlib' into 10.3bb-10.3-serg
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) +