summaryrefslogtreecommitdiff
path: root/deps/zlib/inffast.c
diff options
context:
space:
mode:
authorblinkysc <37940565+blinkysc@users.noreply.github.com>2025-04-21 13:47:05 -0500
committerGitHub <noreply@github.com>2025-04-21 20:47:05 +0200
commitf1df2c21d2c513ac88ebd3593df78d2907548aa7 (patch)
tree4a26c60e7685142e57b5bc7f6ee75df6af6bfbc8 /deps/zlib/inffast.c
parent9ced420849ae875e1d8d448505e474818925830c (diff)
chore(Deps/Zlib): Upgrade zlib to 1.3.1 (#21940)
Diffstat (limited to 'deps/zlib/inffast.c')
-rw-r--r--deps/zlib/inffast.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/deps/zlib/inffast.c b/deps/zlib/inffast.c
index 1fec7f363f..9354676e78 100644
--- a/deps/zlib/inffast.c
+++ b/deps/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 */