summaryrefslogtreecommitdiff
path: root/gzwrite.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 /gzwrite.c
parent78af3d50d814920ae05029436e8a50e10585d597 (diff)
Remove FAR variants of variables ushf, schf, Posf, Bytef, charf,
intf, uIntf and uLongf
Diffstat (limited to 'gzwrite.c')
-rw-r--r--gzwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gzwrite.c b/gzwrite.c
index 2c75d59..c592d1a 100644
--- a/gzwrite.c
+++ b/gzwrite.c
@@ -231,7 +231,7 @@ int ZEXPORT gzwrite(file, buf, len)
/* directly compress user buffer to file */
strm->avail_in = len;
- strm->next_in = (z_const Bytef *)buf;
+ strm->next_in = (z_const Byte *)buf;
state->x.pos += len;
if (gz_comp(state, Z_NO_FLUSH) == -1)
return 0;