summaryrefslogtreecommitdiffstats
path: root/crypto/sha/sha1_one.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/sha/sha1_one.c')
-rw-r--r--crypto/sha/sha1_one.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sha/sha1_one.c b/crypto/sha/sha1_one.c
index 273ab08dc1..e5b38211d2 100644
--- a/crypto/sha/sha1_one.c
+++ b/crypto/sha/sha1_one.c
@@ -24,5 +24,5 @@ unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md)
SHA1_Update(&c, d, n);
SHA1_Final(md, &c);
OPENSSL_cleanse(&c, sizeof(c));
- return (md);
+ return md;
}