diff options
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,7 +37,7 @@ struct internal_state { | |||
37 | /* mode independent information */ | 37 | /* mode independent information */ |
38 | int nowrap; /* flag for no wrapper */ | 38 | int nowrap; /* flag for no wrapper */ |
39 | uInt wbits; /* log2(window size) (8..15, defaults to 15) */ | 39 | uInt wbits; /* log2(window size) (8..15, defaults to 15) */ |
40 | struct inflate_blocks_state | 40 | inflate_blocks_statef |
41 | *blocks; /* current inflate_blocks state */ | 41 | *blocks; /* current inflate_blocks state */ |
42 | 42 | ||
43 | }; | 43 | }; |
@@ -84,7 +84,7 @@ int w; | |||
84 | return Z_STREAM_ERROR; | 84 | return Z_STREAM_ERROR; |
85 | if (z->zalloc == Z_NULL) z->zalloc = zcalloc; | 85 | if (z->zalloc == Z_NULL) z->zalloc = zcalloc; |
86 | if (z->zfree == Z_NULL) z->zfree = zcfree; | 86 | if (z->zfree == Z_NULL) z->zfree = zcfree; |
87 | if ((z->state = (struct internal_state *) | 87 | if ((z->state = (struct internal_state FAR *) |
88 | ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL) | 88 | ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL) |
89 | return Z_MEM_ERROR; | 89 | return Z_MEM_ERROR; |
90 | z->state->blocks = Z_NULL; | 90 | z->state->blocks = Z_NULL; |
@@ -235,7 +235,7 @@ int inflateSync(z) | |||
235 | z_stream *z; | 235 | z_stream *z; |
236 | { | 236 | { |
237 | uInt n; /* number of bytes to look at */ | 237 | uInt n; /* number of bytes to look at */ |
238 | Byte *p; /* pointer to bytes */ | 238 | Bytef *p; /* pointer to bytes */ |
239 | uInt m; /* number of marker bytes found in a row */ | 239 | uInt m; /* number of marker bytes found in a row */ |
240 | uLong r, w; /* temporaries to save total_in and total_out */ | 240 | uLong r, w; /* temporaries to save total_in and total_out */ |
241 | 241 | ||