summaryrefslogtreecommitdiff
path: root/uncompr.c
diff options
context:
space:
mode:
authorhansr <hk-git@circlestorm.org>2014-10-16 15:32:17 +0200
committerhansr <hk-git@circlestorm.org>2014-10-16 15:32:17 +0200
commitc4963b5ebf8e1c4171445c8abe907f95a02972d5 (patch)
treef175d954a7f7ccb8f6f35ac92a7e77726042fd76 /uncompr.c
parent78af3d50d814920ae05029436e8a50e10585d597 (diff)
Remove FAR variants of variables ushf, schf, Posf, Bytef, charf,
intf, uIntf and uLongf
Diffstat (limited to 'uncompr.c')
-rw-r--r--uncompr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/uncompr.c b/uncompr.c
index ed427db..fada0c6 100644
--- a/uncompr.c
+++ b/uncompr.c
@@ -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;