diff --git a/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd5.c b/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd5.c index dcf76913cc..e1c10e342c 100644 --- a/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd5.c +++ b/CryptoPkg/Library/BaseCryptLib/Hash/CryptMd5.c @@ -56,7 +56,7 @@ Md5Init ( // // Check input parameters. // - if ((Md5Context == NULL)) { + if (Md5Context == NULL) { return FALSE; }