summaryrefslogtreecommitdiff
path: root/uncompr.c
diff options
context:
space:
mode:
Diffstat (limited to 'uncompr.c')
-rw-r--r--uncompr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uncompr.c b/uncompr.c
index c76286c..b423696 100644
--- a/uncompr.c
+++ b/uncompr.c
@@ -23,9 +23,9 @@
23 buffer, or Z_DATA_ERROR if the input data was corrupted. 23 buffer, or Z_DATA_ERROR if the input data was corrupted.
24*/ 24*/
25int uncompress (dest, destLen, source, sourceLen) 25int uncompress (dest, destLen, source, sourceLen)
26 Byte *dest; 26 Bytef *dest;
27 uLong *destLen; 27 uLongf *destLen;
28 Byte *source; 28 Bytef *source;
29 uLong sourceLen; 29 uLong sourceLen;
30{ 30{
31 z_stream stream; 31 z_stream stream;