bn/bn_mont.c: improve readability of post-condition code.
[oweals/openssl.git] / crypto / md4 / md4_one.c
index 9f0989fad6af6589e3ae1dc3a11cf155dfc462ee..9e52303c2fca853508a5d22f62452e0618383b5f 100644 (file)
@@ -43,5 +43,5 @@ unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md)
 #endif
     MD4_Final(md, &c);
     OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
-    return (md);
+    return md;
 }