diff options
author | Mark Adler <fork@madler.net> | 2022-10-01 17:04:06 -0700 |
---|---|---|
committer | Mark Adler <fork@madler.net> | 2022-10-05 15:17:52 -0700 |
commit | 84c6716a48743edfb71053ba07755e0cf7ba638d (patch) | |
tree | 5e02319722d8682bd51f7de01f38b21bb13756c8 /uncompr.c | |
parent | 3e4aa45834c2e76c1f21f9c463c2f356f3bb512c (diff) | |
download | zlib-84c6716a48743edfb71053ba07755e0cf7ba638d.tar.gz zlib-84c6716a48743edfb71053ba07755e0cf7ba638d.tar.bz2 zlib-84c6716a48743edfb71053ba07755e0cf7ba638d.zip |
Minor formatting improvements.
No code changes.
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ | |||
24 | Z_DATA_ERROR if the input data was corrupted, including if the input data is | 24 | Z_DATA_ERROR if the input data was corrupted, including if the input data is |
25 | an incomplete zlib stream. | 25 | an incomplete zlib stream. |
26 | */ | 26 | */ |
27 | int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) | 27 | int ZEXPORT uncompress2(dest, destLen, source, sourceLen) |
28 | Bytef *dest; | 28 | Bytef *dest; |
29 | uLongf *destLen; | 29 | uLongf *destLen; |
30 | const Bytef *source; | 30 | const Bytef *source; |
@@ -83,7 +83,7 @@ int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) | |||
83 | err; | 83 | err; |
84 | } | 84 | } |
85 | 85 | ||
86 | int ZEXPORT uncompress (dest, destLen, source, sourceLen) | 86 | int ZEXPORT uncompress(dest, destLen, source, sourceLen) |
87 | Bytef *dest; | 87 | Bytef *dest; |
88 | uLongf *destLen; | 88 | uLongf *destLen; |
89 | const Bytef *source; | 89 | const Bytef *source; |