Skip to content
This repository has been archived by the owner on Jul 2, 2022. It is now read-only.

Commit

Permalink
docs: fix simple typo, resulsts -> results
Browse files Browse the repository at this point in the history
There is a small typo in sha256_4way.c.

Should read `results` rather than `resulsts`.
  • Loading branch information
timgates42 committed Dec 16, 2020
1 parent 867e0a5 commit 582975a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sha256_4way.c
Expand Up @@ -467,7 +467,7 @@ static void DoubleBlockSHA256(const void* pin, void* pad, const void *pre, unsig
SHA256ROUND(b, c, d, e, f, g, h, a, 63, w15);
#endif

/* store resulsts directly in thash */
/* store results directly in thash */
#define store_2(x,i) \
w0 = _mm_set1_epi32(hInit[i]); \
*(__m128i *)&(thash)[i][0+k] = _mm_add_epi32(w0, x);
Expand Down

0 comments on commit 582975a

Please sign in to comment.