summaryrefslogtreecommitdiffstats
path: root/crypto/stack
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-04-20 12:53:50 +0000
committerRichard Levitte <levitte@openssl.org>2005-04-20 12:53:50 +0000
commit49f386578e374b8b1941f500459b0369d92d8615 (patch)
tree4b030c2f7e543c82841126373d885445e62c23f3 /crypto/stack
parent7c671508bdcd006352e577c470553a25da9487ab (diff)
Type mismatch detected by DEC C compiler. void* != void**
Diffstat (limited to 'crypto/stack')
-rw-r--r--crypto/stack/safestack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/stack/safestack.h b/crypto/stack/safestack.h
index 3167e3ec6e..3b2680584b 100644
--- a/crypto/stack/safestack.h
+++ b/crypto/stack/safestack.h
@@ -201,7 +201,7 @@ STACK_OF(type) \
#define SKM_ASN1_seq_pack(type, st, i2d_func, buf, len) \
ASN1_seq_pack(st, i2d_func, buf, len)
#define SKM_ASN1_seq_unpack(type, buf, len, d2i_func, free_func) \
- ASN1_seq_unpack(buf,len,(char *(*)(void *,const unsigned char **,long))d2i_func, (void(*)(void *))free_func)
+ ASN1_seq_unpack(buf,len,(char *(*)(void **,const unsigned char **,long))d2i_func, (void(*)(void *))free_func)
#define SKM_PKCS12_decrypt_d2i(type, algor, d2i_func, free_func, pass, passlen, oct, seq) \
((STACK *)PKCS12_decrypt_d2i(algor,(char *(*)())d2i_func, (void(*)(void *))free_func,pass,passlen,oct,seq))