aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_int.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_int.c
parent462f79ec44fb9259c48be448b231df3073c000d9 (diff)
downloadopenssl-cbb448c9457cbd17dc58cf4bcae23dda261a3934.tar.gz
Don't return stuff from void functions.
Diffstat (limited to 'crypto/asn1/a_int.c')
-rw-r--r--crypto/asn1/a_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_int.c b/crypto/asn1/a_int.c
index de40623f42..7ed99eb399 100644
--- a/crypto/asn1/a_int.c
+++ b/crypto/asn1/a_int.c
@@ -64,7 +64,7 @@ ASN1_INTEGER *ASN1_INTEGER_new(void)
{ return M_ASN1_INTEGER_new();}
void ASN1_INTEGER_free(ASN1_INTEGER *x)
-{ return M_ASN1_INTEGER_free(x);}
+{ M_ASN1_INTEGER_free(x);}
ASN1_INTEGER *ASN1_INTEGER_dup(ASN1_INTEGER *x)
{ return M_ASN1_INTEGER_dup(x);}