Remove parentheses of return.
[openssl.git] / crypto / mdc2 / mdc2_one.c
index 472a5ec2e0dbe746159e6d55e6c8005d5e6e4509..58e1e0fdf6c7965aa1147609274a45f7b905479c 100644 (file)
@@ -23,5 +23,5 @@ unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md)
     MDC2_Update(&c, d, n);
     MDC2_Final(md, &c);
     OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
-    return (md);
+    return md;
 }