aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-06-05 02:30:39 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-06-05 02:30:39 -0700
commitcd6a8eaea4400ae5ffcaf1d678290ddd3da438c0 (patch)
tree18032a6486b8a5808efef73e90d2cb1532a20341 /lib
parent3e3addbbd8cc5520f188b4ccf498c919c411d68b (diff)
downloadhistory-cd6a8eaea4400ae5ffcaf1d678290ddd3da438c0.tar.gz
zlib cleanup: final fixups
Jörn missed a few places of FAR conversion in inflate
Diffstat (limited to 'lib')
-rw-r--r--lib/zlib_inflate/inflate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/zlib_inflate/inflate.c b/lib/zlib_inflate/inflate.c
index 386fc6778fbee1..67d9410d9a8b98 100644
--- a/lib/zlib_inflate/inflate.c
+++ b/lib/zlib_inflate/inflate.c
@@ -255,7 +255,7 @@ int zlib_inflateSync(
)
{
uInt n; /* number of bytes to look at */
- Bytef *p; /* pointer to bytes */
+ Byte *p; /* pointer to bytes */
uInt m; /* number of marker bytes found in a row */
uLong r, w; /* temporaries to save total_in and total_out */
@@ -332,9 +332,9 @@ static int zlib_inflate_addhistory(inflate_blocks_statef *s,
uLong b; /* bit buffer */ /* NOT USED HERE */
uInt k; /* bits in bit buffer */ /* NOT USED HERE */
uInt t; /* temporary storage */
- Bytef *p; /* input data pointer */
+ Byte *p; /* input data pointer */
uInt n; /* bytes available there */
- Bytef *q; /* output window write pointer */
+ Byte *q; /* output window write pointer */
uInt m; /* bytes to end of window or read pointer */
if (s->read != s->write)