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 /gzwrite.c | |
parent | 78af3d50d814920ae05029436e8a50e10585d597 (diff) |
Remove FAR variants of variables ushf, schf, Posf, Bytef, charf,
intf, uIntf and uLongf
Diffstat (limited to 'gzwrite.c')
-rw-r--r-- | gzwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |