From: Rich Ercolani <214141+rincebrain@users.noreply.github.com> Date: Fri, 25 Mar 2022 14:06:39 +0000 (-0400) Subject: Correct typo in functable X-Git-Tag: 2.1.0-beta1~307 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7592681e97a572399dccf65814280bc103ebaedc;p=thirdparty%2Fzlib-ng.git Correct typo in functable Now, I could be wrong about this being an error, but I don't see any discussion suggesting this was intended, so... --- diff --git a/functable.c b/functable.c index a4ad2978..bd1e4cea 100644 --- a/functable.c +++ b/functable.c @@ -133,7 +133,7 @@ Z_INTERNAL uint32_t longest_match_slow_stub(deflate_state *const s, Pos cur_matc # endif # if defined(X86_SSE2) && defined(HAVE_BUILTIN_CTZ) if (x86_cpu_has_sse2) - functable.longest_match = &longest_match_slow_unaligned_sse2; + functable.longest_match_slow = &longest_match_slow_unaligned_sse2; # endif # if defined(X86_AVX2) && defined(HAVE_BUILTIN_CTZ) if (x86_cpu_has_avx2)