From 7c459c8a057fd6a6de75f4a084f35a893270a5bf Mon Sep 17 00:00:00 2001 From: Randy Date: Fri, 6 May 2022 05:01:09 +0200 Subject: [PATCH] Update miniz_tdef.c Co-authored-by: Alexander Borsuk <170263+biodranik@users.noreply.github.com> --- miniz_tdef.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz_tdef.c b/miniz_tdef.c index 5b287a8..3e6f5d0 100644 --- a/miniz_tdef.c +++ b/miniz_tdef.c @@ -629,7 +629,7 @@ static int tdefl_flush_block(tdefl_compressor *d, int flush) mz_uint header, i, n = sizeof(s_tdefl_num_probes) / sizeof(mz_uint); /* Determine compression level by reversing the process in tdefl_create_comp_flags_from_zip_params() */ - for (i=0; i < n; i++) + for (i = 0; i < n; i++) if (s_tdefl_num_probes[i] == (d->m_flags & 0xFFF)) break; if (i < 2)