aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_gentm.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-10-23 09:19:42 +0000
committerBen Laurie <ben@openssl.org>1999-10-23 09:19:42 +0000
commitcbb448c9457cbd17dc58cf4bcae23dda261a3934 (patch)
tree908bd352f19cc3b64e552a83b02a7fd990dc9df6 /crypto/asn1/a_gentm.c
parent462f79ec44fb9259c48be448b231df3073c000d9 (diff)
downloadopenssl-cbb448c9457cbd17dc58cf4bcae23dda261a3934.tar.gz
Don't return stuff from void functions.
Diffstat (limited to 'crypto/asn1/a_gentm.c')
-rw-r--r--crypto/asn1/a_gentm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_gentm.c b/crypto/asn1/a_gentm.c
index d5b8bd99b2..84062170e8 100644
--- a/crypto/asn1/a_gentm.c
+++ b/crypto/asn1/a_gentm.c
@@ -67,7 +67,7 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_new(void)
{ return M_ASN1_GENERALIZEDTIME_new(); }
void ASN1_GENERALIZEDTIME_free(ASN1_GENERALIZEDTIME *x)
-{ return M_ASN1_GENERALIZEDTIME_free(x); }
+{ M_ASN1_GENERALIZEDTIME_free(x); }
int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp)
{