diff options
Diffstat (limited to 'cpan/Compress-Raw-Zlib/zlib-src/inffast.c')
-rw-r--r-- | cpan/Compress-Raw-Zlib/zlib-src/inffast.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpan/Compress-Raw-Zlib/zlib-src/inffast.c b/cpan/Compress-Raw-Zlib/zlib-src/inffast.c index 2f1d60b43b..155dcc7bde 100644 --- a/cpan/Compress-Raw-Zlib/zlib-src/inffast.c +++ b/cpan/Compress-Raw-Zlib/zlib-src/inffast.c @@ -64,9 +64,9 @@ requires strm->avail_out >= 258 for each loop to avoid checking for output space. */ -void ZLIB_INTERNAL inflate_fast(strm, start) -z_streamp strm; -unsigned start; /* inflate()'s starting value for strm->avail_out */ +void ZLIB_INTERNAL inflate_fast( + z_streamp strm, + unsigned start) { struct inflate_state FAR *state; unsigned char FAR *in; /* local strm->next_in */ |