diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
commit | ff11b0a61f7345572ff2e413173d3179486162f2 (patch) | |
tree | f3c9e2563c4f0ac6684a0012ad48423d4c6aa798 /infcodes.c | |
parent | e26a448e9673d67dc2866e11a48d24fc352e5f80 (diff) | |
download | zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.gz zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.bz2 zlib-ff11b0a61f7345572ff2e413173d3179486162f2.zip |
zlib 1.0.4v1.0.4
Diffstat (limited to 'infcodes.c')
-rw-r--r-- | infcodes.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -60,7 +60,7 @@ inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z) | |||
60 | uInt bl, bd; | 60 | uInt bl, bd; |
61 | inflate_huft *tl; | 61 | inflate_huft *tl; |
62 | inflate_huft *td; /* need separate declaration for Borland C++ */ | 62 | inflate_huft *td; /* need separate declaration for Borland C++ */ |
63 | z_stream *z; | 63 | z_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 | ||
81 | int inflate_codes(s, z, r) | 81 | int inflate_codes(s, z, r) |
82 | inflate_blocks_statef *s; | 82 | inflate_blocks_statef *s; |
83 | z_stream *z; | 83 | z_streamp z; |
84 | int r; | 84 | int r; |
85 | { | 85 | { |
86 | uInt j; /* temporary storage */ | 86 | uInt j; /* temporary storage */ |
@@ -240,7 +240,7 @@ int r; | |||
240 | 240 | ||
241 | void inflate_codes_free(c, z) | 241 | void inflate_codes_free(c, z) |
242 | inflate_codes_statef *c; | 242 | inflate_codes_statef *c; |
243 | z_stream *z; | 243 | z_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")); |