From ed2dd6874a905769c5cfc080333ab0b12f9a9fe8 Mon Sep 17 00:00:00 2001 From: ame Date: Thu, 24 Jul 2025 02:32:37 -0500 Subject: errors and then,, yknow fix them --- src/hash/sha01.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash/sha01.c') diff --git a/src/hash/sha01.c b/src/hash/sha01.c index f5478dd..4d05e7e 100644 --- a/src/hash/sha01.c +++ b/src/hash/sha01.c @@ -43,7 +43,7 @@ void sha01_round(struct sha01_hash* hash){ for(int i = 0; i != 16; i++){ int t = 24; - for(int x = 0;t>=0; x++){ + for(;t>=0;){ W[i] += (((uint32_t)hash->buffer[hat]) << t); hat++; t-=8; -- cgit v1.2.3