From 7592681e97a572399dccf65814280bc103ebaedc Mon Sep 17 00:00:00 2001 From: Rich Ercolani <214141+rincebrain@users.noreply.github.com> Date: Fri, 25 Mar 2022 10:06:39 -0400 Subject: [PATCH] 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... --- functable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.2