From f02438d63a2d383635d95d389e7321f4e674a39d Mon Sep 17 00:00:00 2001 From: divinity76 Date: Mon, 29 Jan 2024 12:39:11 +0100 Subject: [PATCH] whitespace --- c/blake3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/blake3.c b/c/blake3.c index 6de78bf..09f2d02 100644 --- a/c/blake3.c +++ b/c/blake3.c @@ -351,7 +351,7 @@ INLINE void compress_subtree_to_parent_node( // is set on platforms where MAX_SIMD_DEGREE_OR_2 == 2, GCC emits spurious // warnings here. GCC 8.5 is particularly sensitive, so if you're changing // this code, test it against that version. -#if MAX_SIMD_DEGREE_OR_2 > 2 +#if MAX_SIMD_DEGREE_OR_2 > 2 while (num_cvs > 2 && num_cvs <= MAX_SIMD_DEGREE_OR_2) { num_cvs = compress_parents_parallel(cv_array, num_cvs, key, flags, out_array);