aboutsummaryrefslogtreecommitdiff
path: root/infcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'infcodes.c')
-rw-r--r--infcodes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/infcodes.c b/infcodes.c
index 6314e80..3ae3818 100644
--- a/infcodes.c
+++ b/infcodes.c
@@ -60,7 +60,7 @@ inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z)
60uInt bl, bd; 60uInt bl, bd;
61inflate_huft *tl; 61inflate_huft *tl;
62inflate_huft *td; /* need separate declaration for Borland C++ */ 62inflate_huft *td; /* need separate declaration for Borland C++ */
63z_stream *z; 63z_streamp z;
64{ 64{
65 inflate_codes_statef *c; 65 inflate_codes_statef *c;
66 66
@@ -80,7 +80,7 @@ z_stream *z;
80 80
81int inflate_codes(s, z, r) 81int inflate_codes(s, z, r)
82inflate_blocks_statef *s; 82inflate_blocks_statef *s;
83z_stream *z; 83z_streamp z;
84int r; 84int r;
85{ 85{
86 uInt j; /* temporary storage */ 86 uInt j; /* temporary storage */
@@ -240,7 +240,7 @@ int r;
240 240
241void inflate_codes_free(c, z) 241void inflate_codes_free(c, z)
242inflate_codes_statef *c; 242inflate_codes_statef *c;
243z_stream *z; 243z_streamp z;
244{ 244{
245 ZFREE(z, c); 245 ZFREE(z, c);
246 Tracev((stderr, "inflate: codes free\n")); 246 Tracev((stderr, "inflate: codes free\n"));