summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2024-03-02 12:40:54 -0500
committerPaul Duncan <pabs@pablotron.org>2024-03-02 12:40:54 -0500
commit7dc1029c2c79f65a716ff9e44f3ab7e402d426ce (patch)
tree9b8f155867ce19bac898accdde68e3e5ebd51f27
parentf63eb6de0541714b50df1d971108a62d20a0540a (diff)
downloadsha3-7dc1029c2c79f65a716ff9e44f3ab7e402d426ce.tar.bz2
sha3-7dc1029c2c79f65a716ff9e44f3ab7e402d426ce.zip
sha3.c: fix comment
-rw-r--r--sha3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha3.c b/sha3.c
index 50c6843..d0f6cda 100644
--- a/sha3.c
+++ b/sha3.c
@@ -184,7 +184,7 @@ static inline void permute(uint64_t a[static 25], const size_t num_rounds) {
iota(a, 24 - num_rounds + i);
}
}
-#endif /* __AVX512F__ */
+#endif /* !__AVX512F__ */
#ifdef __AVX512F__
#include <immintrin.h>