diff options
author | Richard Levitte <levitte@openssl.org> | 2000-01-18 09:23:15 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-01-18 09:23:15 +0100 |
commit | ea5e7bcf632bba51618ab9407409b24cc4df8fa0 (patch) | |
tree | 049af6d232de5289afc67161a871af7186f10d06 /crypto/x509v3/v3_int.c | |
parent | A test script to check on the header files (diff) | |
download | openssl-ea5e7bcf632bba51618ab9407409b24cc4df8fa0.tar.xz openssl-ea5e7bcf632bba51618ab9407409b24cc4df8fa0.zip |
Avoid converting void * to a function pointer when NULL is defined as
((void *)0), by have a 0 instead.
Diffstat (limited to 'crypto/x509v3/v3_int.c')
-rw-r--r-- | crypto/x509v3/v3_int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_int.c b/crypto/x509v3/v3_int.c index a2edfe5463..63c201e5f4 100644 --- a/crypto/x509v3/v3_int.c +++ b/crypto/x509v3/v3_int.c @@ -67,6 +67,6 @@ NID_crl_number, 0, (X509V3_EXT_D2I)d2i_ASN1_INTEGER, (X509V3_EXT_I2D)i2d_ASN1_INTEGER, (X509V3_EXT_I2S)i2s_ASN1_INTEGER, -(X509V3_EXT_S2I)NULL, +(X509V3_EXT_S2I)0, NULL, NULL, NULL, NULL, NULL}; |