From dc18a14663d4aa36907bc1427574c986b0f8ccee Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Sat, 18 May 2024 22:52:17 +0300 Subject: [PATCH] Fix typo --- src/nfa/mpvcompile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nfa/mpvcompile.cpp b/src/nfa/mpvcompile.cpp index 69ddfdcb..7c06da9d 100644 --- a/src/nfa/mpvcompile.cpp +++ b/src/nfa/mpvcompile.cpp @@ -180,7 +180,7 @@ void writeKiloPuff(const map>::const_iterator &it, #ifdef HAVE_SVE2 } else if (reach.count() >= 240) { kp->type = MPV_VERM16; - vermicelli16Build(~reach, reinterpret_casT(&kp->u.verm16.mask)); + vermicelli16Build(~reach, reinterpret_cast(&kp->u.verm16.mask)); } else if (reach.count() <= 16) { kp->type = MPV_NVERM16; vermicelli16Build(reach, reinterpret_cast(&kp->u.verm16.mask));