diff options
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | */ |
25 | int uncompress (dest, destLen, source, sourceLen) | 25 | int 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; |