Remove parentheses of return.
[openssl.git] / crypto / md2 / md2_one.c
index 460f96e475a54e2686d2e842cdc8c9ff426a8765..5502b21696d4701a28217c13c4b80e965c261b11 100644 (file)
@@ -43,5 +43,5 @@ unsigned char *MD2(const unsigned char *d, size_t n, unsigned char *md)
 #endif
     MD2_Final(md, &c);
     OPENSSL_cleanse(&c, sizeof(c)); /* Security consideration */
-    return (md);
+    return md;
 }