aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-18 21:56:56 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-18 21:56:56 +0200
commitd5f2c55016e77a4e88f2c4df7d474b2430b65ec2 (patch)
tree301239eacd1114540e3d12ff7c7a5972a3cd7312 /src
parentfcebac5606bb043b1fd35bfee9e4ac910c804aed (diff)
Style fixHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/sha1-x64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sha1-x64.c b/src/sha1-x64.c
index ad82b6e..8b4c381 100644
--- a/src/sha1-x64.c
+++ b/src/sha1-x64.c
@@ -24,7 +24,7 @@ sha1hashblk(sha1_t *s, const uint8_t *blk)
#define bswapdmsk 0x1B /* 0b00'01'10'11 */
const __m128i bswapbmsk = _mm_set_epi64x(
0x0001020304050607ULL,
- 0x08090a0b0c0d0e0fULL
+ 0x08090A0B0C0D0E0FULL
);
const __m128i *blkx = (const __m128i *)blk;