diff options
author | hansr <hk-git@circlestorm.org> | 2014-10-16 15:32:17 +0200 |
---|---|---|
committer | hansr <hk-git@circlestorm.org> | 2014-10-16 15:32:17 +0200 |
commit | c4963b5ebf8e1c4171445c8abe907f95a02972d5 (patch) | |
tree | f175d954a7f7ccb8f6f35ac92a7e77726042fd76 /uncompr.c | |
parent | 78af3d50d814920ae05029436e8a50e10585d597 (diff) |
Remove FAR variants of variables ushf, schf, Posf, Bytef, charf,
intf, uIntf and uLongf
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,15 +22,15 @@ 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; + Byte *dest; + uLong *destLen; + const Byte *source; uLong sourceLen; { z_stream stream; int err; - stream.next_in = (z_const Bytef *)source; + stream.next_in = (z_const Byte *)source; stream.avail_in = (uInt)sourceLen; stream.next_out = dest; stream.avail_out = (uInt)*destLen; |