diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-04-26 21:31:49 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-04-26 21:31:49 +0200 |
commit | 33e9bf680a3ec6c826fd6c1572bb54451bd52c33 (patch) | |
tree | c588a848af263af7f03bd75d49fa27ce1625d32a /inffast.c | |
parent | 429cebfd68ee7615123653e64ce18de6f499030f (diff) |
Cleanup: Replace 'z_streamp' with 'z_stream *'
Diffstat (limited to 'inffast.c')
-rw-r--r-- | inffast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |