summaryrefslogtreecommitdiff
path: root/uncompr.c
diff options
context:
space:
mode:
authorHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-25 23:04:39 +0200
committerHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-25 23:04:39 +0200
commitae0043b98860c17fa9655cf12be407afaabc3a67 (patch)
treee25eee5a2dfcf9f79dcf95593c92d48888a5631a /uncompr.c
parentacfaa63fc00a2315d74205c0f2e467c0068d95a6 (diff)
Style cleanup for compress/uncompress and longest_match code
Diffstat (limited to 'uncompr.c')
-rw-r--r--uncompr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/uncompr.c b/uncompr.c
index 2a3eee4..d53e120 100644
--- a/uncompr.c
+++ b/uncompr.c
@@ -21,8 +21,7 @@
enough memory, Z_BUF_ERROR if there was not enough room in the output
buffer, or Z_DATA_ERROR if the input data was corrupted.
*/
-int ZEXPORT uncompress (unsigned char *dest, uLong *destLen, const unsigned char *source, uLong sourceLen)
-{
+int ZEXPORT uncompress(unsigned char *dest, uLong *destLen, const unsigned char *source, uLong sourceLen) {
z_stream stream;
int err;