Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6b07a61

Browse files
committed
extmod/crypto: Add static keyword where it should be.
1 parent 2e2e404 commit 6b07a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extmod/crypto-algorithms/sha256.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static const WORD k[64] = {
4141
};
4242

4343
/*********************** FUNCTION DEFINITIONS ***********************/
44-
void sha256_transform(SHA256_CTX *ctx, const BYTE data[])
44+
static void sha256_transform(SHA256_CTX *ctx, const BYTE data[])
4545
{
4646
WORD a, b, c, d, e, f, g, h, i, j, t1, t2, m[64];
4747

0 commit comments

Comments
 (0)