From 8ca8dd9b05c188851bab1b2e335fcd8618b6912e Mon Sep 17 00:00:00 2001 From: Bruce Cran Date: Tue, 14 Jul 2015 02:57:38 +0000 Subject: [PATCH] CryptoPkg: remove redundant parentheses Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Bruce Cran Reviewed-by: Qin Long git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17939 6f19259b-4bc3-4df7-8a09-765794883524 --- CryptoPkg/Library/BaseCryptLib/Hash/CryptMd5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2