diff options
Diffstat (limited to 'cpan/Compress-Raw-Zlib/zlib-src/uncompr.c')
-rw-r--r-- | cpan/Compress-Raw-Zlib/zlib-src/uncompr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpan/Compress-Raw-Zlib/zlib-src/uncompr.c b/cpan/Compress-Raw-Zlib/zlib-src/uncompr.c index ad98be3a5d..9b272e983f 100644 --- a/cpan/Compress-Raw-Zlib/zlib-src/uncompr.c +++ b/cpan/Compress-Raw-Zlib/zlib-src/uncompr.c @@ -21,11 +21,11 @@ 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 (dest, destLen, source, sourceLen) - Bytef *dest; - uLongf *destLen; - const Bytef *source; - uLong sourceLen; +int ZEXPORT uncompress ( + Bytef *dest, + uLongf *destLen, + const Bytef *source, + uLong sourceLen) { z_stream stream; int err; |