aboutsummaryrefslogtreecommitdiff
path: root/infblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'infblock.c')
-rw-r--r--infblock.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/infblock.c b/infblock.c
index 733e983..cc2e674 100644
--- a/infblock.c
+++ b/infblock.c
@@ -63,7 +63,7 @@ local uInt border[] = { /* Order of the bit length code lengths */
63 63
64void inflate_blocks_reset(s, z, c) 64void inflate_blocks_reset(s, z, c)
65inflate_blocks_statef *s; 65inflate_blocks_statef *s;
66z_stream *z; 66z_streamp z;
67uLongf *c; 67uLongf *c;
68{ 68{
69 if (s->checkfn != Z_NULL) 69 if (s->checkfn != Z_NULL)
@@ -87,7 +87,7 @@ uLongf *c;
87 87
88 88
89inflate_blocks_statef *inflate_blocks_new(z, c, w) 89inflate_blocks_statef *inflate_blocks_new(z, c, w)
90z_stream *z; 90z_streamp z;
91check_func c; 91check_func c;
92uInt w; 92uInt w;
93{ 93{
@@ -115,7 +115,7 @@ uInt w;
115#endif 115#endif
116int inflate_blocks(s, z, r) 116int inflate_blocks(s, z, r)
117inflate_blocks_statef *s; 117inflate_blocks_statef *s;
118z_stream *z; 118z_streamp z;
119int r; 119int r;
120{ 120{
121 uInt t; /* temporary storage */ 121 uInt t; /* temporary storage */
@@ -381,7 +381,7 @@ int r;
381 381
382int inflate_blocks_free(s, z, c) 382int inflate_blocks_free(s, z, c)
383inflate_blocks_statef *s; 383inflate_blocks_statef *s;
384z_stream *z; 384z_streamp z;
385uLongf *c; 385uLongf *c;
386{ 386{
387 inflate_blocks_reset(s, z, c); 387 inflate_blocks_reset(s, z, c);