Give everything prototypes (well, everything that's actually used).
[openssl.git] / crypto / asn1 / asn1_mac.h
index a67fb341eebd837b25f996e5f6314159d622fbf4..f95cb145b79dcb1f72dfc794915d44859c6eb530 100644 (file)
@@ -126,9 +126,9 @@ err:\
                (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
 
 /* Don't use this with d2i_ASN1_BOOLEAN() */
-#define M_ASN1_D2I_get(b,func) \
+#define M_ASN1_D2I_get(type,b,func) \
        c.q=c.p; \
-       if (func(&(b),&c.p,c.slen) == NULL) \
+       if (((D2I_OF(type))func)(&(b),&c.p,c.slen) == NULL) \
                {c.line=__LINE__; goto err; } \
        c.slen-=(c.p-c.q);