From e3320d766d0a103eb42a05728f565c57804d3d49 Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Fri, 26 Nov 2021 22:29:12 +0000 Subject: [PATCH] Fixed merge --- src/crypto/cn/CryptoNight_x86.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/cn/CryptoNight_x86.h b/src/crypto/cn/CryptoNight_x86.h index f305e2e7..4ae4edaf 100644 --- a/src/crypto/cn/CryptoNight_x86.h +++ b/src/crypto/cn/CryptoNight_x86.h @@ -866,7 +866,7 @@ inline void cryptonight_single_hash_gpu(const uint8_t *__restrict__ input, size_ cn_gpu_inner_ssse3(ctx[0]->state, ctx[0]->memory); } - cn_implode_scratchpad(reinterpret_cast(ctx[0]->memory), reinterpret_cast<__m128i *>(ctx[0]->state)); + cn_implode_scratchpad(ctx[0]); keccakf(reinterpret_cast(ctx[0]->state), 24); memcpy(output, ctx[0]->state, 32); }