From a02b2ccd5ff9d94c8223526ad7506cb754de2469 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sat, 1 May 2021 14:43:10 +0200 Subject: [PATCH] Fix type of address space of pointer in sha512_hmac_init_global_utf16le_swap() --- OpenCL/inc_hash_sha512.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenCL/inc_hash_sha512.cl b/OpenCL/inc_hash_sha512.cl index 747ba63e7..236e83814 100644 --- a/OpenCL/inc_hash_sha512.cl +++ b/OpenCL/inc_hash_sha512.cl @@ -1932,7 +1932,7 @@ DECLSPEC void sha512_hmac_init_global_utf16le_swap (sha512_hmac_ctx_t *ctx, GLOB sha512_init (&tmp); - sha512_update_global_utf16le_swap (&tmp, enc_buf, enc_len); + sha512_update_utf16le_swap (&tmp, enc_buf, enc_len); sha512_final (&tmp);