summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/deflate.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 21:26:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 21:26:47 +0000
commitb4983fe4c3f633f88d7001690ff37218fb8a3245 (patch)
tree91437cedd1ed1e109c653c9188015ac465d08690 /cpukit/zlib/deflate.h
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b4983fe4c3f633f88d7001690ff37218fb8a3245.tar.bz2
Upgrade to zlib-1.2.3.
Diffstat (limited to 'cpukit/zlib/deflate.h')
-rw-r--r--cpukit/zlib/deflate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/zlib/deflate.h b/cpukit/zlib/deflate.h
index 2b74e927f8..05a5ab3a2c 100644
--- a/cpukit/zlib/deflate.h
+++ b/cpukit/zlib/deflate.h
@@ -8,7 +8,7 @@
subject to change. Applications should only use zlib.h.
*/
-/* $Id$ */
+/* @(#) $Id$ */
#ifndef DEFLATE_H
#define DEFLATE_H
@@ -97,10 +97,10 @@ typedef struct internal_state {
Bytef *pending_buf; /* output still pending */
ulg pending_buf_size; /* size of pending_buf */
Bytef *pending_out; /* next pending byte to output to the stream */
- int pending; /* nb of bytes in the pending buffer */
+ uInt pending; /* nb of bytes in the pending buffer */
int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
gz_headerp gzhead; /* gzip header information to write */
- int gzindex; /* where in extra, name, or comment */
+ uInt gzindex; /* where in extra, name, or comment */
Byte method; /* STORED (for zip only) or DEFLATED */
int last_flush; /* value of flush param for previous deflate call */