From 6a6dd103f63d5de7e63f020819c48fc05eab05ac Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Fri, 25 Apr 2025 19:28:14 +0200 Subject: [PATCH] fix asn1_check_int_tag build failure with Apple Metal --- OpenCL/inc_common.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenCL/inc_common.cl b/OpenCL/inc_common.cl index 04ea90561..4924e3551 100644 --- a/OpenCL/inc_common.cl +++ b/OpenCL/inc_common.cl @@ -2703,7 +2703,7 @@ DECLSPEC int asn1_detect (PRIVATE_AS const u32 *buf, const int len) DECLSPEC int asn1_check_int_tag (PRIVATE_AS const u32 *buf, const int len) { - const u8 *bytes = (const u8 *) buf; + PRIVATE_AS const u8 *bytes = (PRIVATE_AS const u8 *) buf; int seq_len_offset = 0;