From 63181ac2b4fd5cdc69f4877544667c24d6afabfe Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Wed, 31 Jul 2024 20:00:04 -0700 Subject: [PATCH] Style: fix whitespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Checked with: git grep "^ " -- $**.h" "**.c" ":(exclude)external" Reported by: Tim Düsterhus --- libcperciva/alg/sha256_sse2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcperciva/alg/sha256_sse2.c b/libcperciva/alg/sha256_sse2.c index d2575534..0dfc04be 100644 --- a/libcperciva/alg/sha256_sse2.c +++ b/libcperciva/alg/sha256_sse2.c @@ -21,7 +21,7 @@ mm_bswap_epi32(__m128i a) { /* Swap bytes in each 16-bit word. */ - a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8)); + a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8)); /* Swap all 16-bit words. */ a = _mm_shufflelo_epi16(a, _MM_SHUFFLE(2, 3, 0, 1));