From: TrianglesPCT Date: Sat, 15 May 2021 01:11:28 +0000 (-0600) Subject: Update zstd_lazy.c X-Git-Tag: v1.5.1~1^2~169^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb1cdd8c63046e66de63cf76448868bbc1dc6b72;p=thirdparty%2Fzstd.git Update zstd_lazy.c add space --- diff --git a/lib/compress/zstd_lazy.c b/lib/compress/zstd_lazy.c index 1add42095..1f2208313 100644 --- a/lib/compress/zstd_lazy.c +++ b/lib/compress/zstd_lazy.c @@ -873,7 +873,7 @@ FORCE_INLINE_TEMPLATE size_t ZSTD_HcFindBestMatch_extDict_selectMLS ( typedef U32 ZSTD_VecMask; /* Clarifies when we are interacting with a U32 representing a mask of matches */ -#if !defined(ZSTD_NO_INTRINSICS) && (defined(__SSE2__) ||defined(_M_AMD64)) /* SIMD SSE version*/ +#if !defined(ZSTD_NO_INTRINSICS) && (defined(__SSE2__) || defined(_M_AMD64)) /* SIMD SSE version*/ #include typedef __m128i ZSTD_Vec128;