diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-25 23:04:39 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-25 23:04:39 +0200 |
commit | ae0043b98860c17fa9655cf12be407afaabc3a67 (patch) | |
tree | e25eee5a2dfcf9f79dcf95593c92d48888a5631a /uncompr.c | |
parent | acfaa63fc00a2315d74205c0f2e467c0068d95a6 (diff) |
Style cleanup for compress/uncompress and longest_match code
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |