summaryrefslogtreecommitdiff
path: root/inffast.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 /inffast.c
parent429cebfd68ee7615123653e64ce18de6f499030f (diff)
Cleanup: Replace 'z_streamp' with 'z_stream *'
Diffstat (limited to 'inffast.c')
-rw-r--r--inffast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inffast.c b/inffast.c
index 6ab7c55..3e36746 100644
--- a/inffast.c
+++ b/inffast.c
@@ -73,7 +73,7 @@
requires strm->avail_out >= 258 for each loop to avoid checking for
output space.
*/
-void ZLIB_INTERNAL inflate_fast(z_streamp strm, unsigned start)
+void ZLIB_INTERNAL inflate_fast(z_stream *strm, unsigned start)
{
/* start: inflate()'s starting value for strm->avail_out */
struct inflate_state *state;