From bfc516d246328e1fbd8abaac784f0d7b81364a87 Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Sat, 1 Aug 2026 09:25:39 +0200 Subject: [PATCH] fix typo sha256_x86_compress/sha256_compress (LTC_CLEAN_STACK only) --- src/hashes/sha2/sha256_x86.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hashes/sha2/sha256_x86.c b/src/hashes/sha2/sha256_x86.c index 1447d4b7..68258c30 100644 --- a/src/hashes/sha2/sha256_x86.c +++ b/src/hashes/sha2/sha256_x86.c @@ -250,10 +250,10 @@ static int LTC_SHA_TARGET s_sha256_x86_compress(hash_state * md, const unsigned #undef K #ifdef LTC_CLEAN_STACK -static int s_sha256_compress(hash_state * md, const unsigned char *buf) +static int s_sha256_x86_compress(hash_state * md, const unsigned char *buf) { int err; - err = ss_sha256_compress(md, buf); + err = ss_sha256_x86_compress(md, buf); burn_stack(sizeof(ulong32) * 74); return err; }