From e718520cc592a3373206e1e050491c9ba9631123 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 9 May 2008 23:16:24 +0000 Subject: [PATCH] Add missing cast. --- crypto/stack/safestack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/stack/safestack.h b/crypto/stack/safestack.h index c00b478e72..926210f722 100644 --- a/crypto/stack/safestack.h +++ b/crypto/stack/safestack.h @@ -175,7 +175,7 @@ STACK_OF(type) \ #define SKM_sk_push(type, st,val) \ sk_push(st, (char *)val) #define SKM_sk_unshift(type, st,val) \ - sk_unshift(st, val) + sk_unshift(st, (char *)val) #define SKM_sk_find(type, st,val) \ sk_find(st, (char *)val) #define SKM_sk_delete(type, st,i) \ -- 2.34.1