From cbb448c9457cbd17dc58cf4bcae23dda261a3934 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 23 Oct 1999 09:19:42 +0000 Subject: Don't return stuff from void functions. --- crypto/asn1/a_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/asn1/a_time.c') 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) { -- cgit v1.2.3