summaryrefslogtreecommitdiff
path: root/infback.c
diff options
context:
space:
mode:
authorHans Kristian Rosbach <hk-git@circlestorm.org>2015-04-26 21:31:49 +0200
committerHans Kristian Rosbach <hk-git@circlestorm.org>2015-04-26 21:31:49 +0200
commit33e9bf680a3ec6c826fd6c1572bb54451bd52c33 (patch)
treec588a848af263af7f03bd75d49fa27ce1625d32a /infback.c
parent429cebfd68ee7615123653e64ce18de6f499030f (diff)
Cleanup: Replace 'z_streamp' with 'z_stream *'
Diffstat (limited to 'infback.c')
-rw-r--r--infback.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/infback.c b/infback.c
index 5df2221..922eeeb 100644
--- a/infback.c
+++ b/infback.c
@@ -26,7 +26,7 @@ local void fixedtables (struct inflate_state *state);
window and output buffer that is 2**windowBits bytes.
*/
int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
-z_streamp strm;
+z_stream *strm;
int windowBits;
unsigned char *window;
const char *version;
@@ -247,7 +247,7 @@ local void fixedtables(struct inflate_state *state)
are not correct, i.e. strm is Z_NULL or the state was not initialized.
*/
int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc)
-z_streamp strm;
+z_stream *strm;
in_func in;
void *in_desc;
out_func out;
@@ -628,7 +628,7 @@ void *out_desc;
}
int ZEXPORT inflateBackEnd(strm)
-z_streamp strm;
+z_stream *strm;
{
if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
return Z_STREAM_ERROR;