Don't return stuff from void functions.
[openssl.git] / crypto / asn1 / a_bitstr.c
index a441cde1db46c980812662c11733a4315c0d9747..b36d62079a968c5295e950f9a3c8a0bfdf8d6249 100644 (file)
@@ -64,7 +64,7 @@ ASN1_BIT_STRING *ASN1_BIT_STRING_new(void)
 { return M_ASN1_BIT_STRING_new(); }
 
 void ASN1_BIT_STRING_free(ASN1_BIT_STRING *x)
-{ return M_ASN1_BIT_STRING_free(x); }
+{ M_ASN1_BIT_STRING_free(x); }
 
 int ASN1_BIT_STRING_set(ASN1_BIT_STRING *x, unsigned char *d, int len)
 { return M_ASN1_BIT_STRING_set(x, d, len); }