diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-08-23 10:11:18 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-08-23 12:29:03 +0200 |
| commit | f456f2550ac222fac399911eeb01957be9230c80 (patch) | |
| tree | 91a583acebcc240535e0fbda0f122429c9c1abae /zlib/inffast.c | |
| parent | c61d6bc46aab9f5dd71639ef6b4d6c2baeda7e66 (diff) | |
Upgrade bundled zlib to version 1.3 dated 18-aug-2023
Diffstat (limited to 'zlib/inffast.c')
| -rw-r--r-- | zlib/inffast.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/zlib/inffast.c b/zlib/inffast.c index 1fec7f363..9354676e7 100644 --- a/zlib/inffast.c +++ b/zlib/inffast.c @@ -47,10 +47,7 @@ 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; z_const unsigned char FAR *in; /* local strm->next_in */ z_const unsigned char FAR *last; /* have enough input while in < last */ |
