diff options
Diffstat (limited to '')
| -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")); |
