aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_time.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_time.c
parent462f79ec44fb9259c48be448b231df3073c000d9 (diff)
downloadopenssl-cbb448c9457cbd17dc58cf4bcae23dda261a3934.tar.gz
Don't return stuff from void functions.
Diffstat (limited to 'crypto/asn1/a_time.c')
-rw-r--r--crypto/asn1/a_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c
index d1900f68e4..b193f1c71f 100644
--- a/crypto/asn1/a_time.c
+++ b/crypto/asn1/a_time.c
@@ -70,7 +70,7 @@ ASN1_TIME *ASN1_TIME_new(void)
{ return M_ASN1_TIME_new(); }
void ASN1_TIME_free(ASN1_TIME *x)
-{ return M_ASN1_TIME_free(x); }
+{ M_ASN1_TIME_free(x); }
int i2d_ASN1_TIME(ASN1_TIME *a, unsigned char **pp)
{