]> git.proxmox.com Git - mirror_edk2.git/commitdiff
CryptoPkg: remove redundant parentheses
authorBruce Cran <bruce@cran.org.uk>
Tue, 14 Jul 2015 02:57:38 +0000 (02:57 +0000)
committerqlong <qlong@Edk2>
Tue, 14 Jul 2015 02:57:38 +0000 (02:57 +0000)
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Bruce Cran <bruce@cran.org.uk>
Reviewed-by: Qin Long <qin.long.intel.com>
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

index dcf76913cce861bfb19856416ee953b2e797fbbe..e1c10e342c78ee675412cb1664251725b37d1b07 100644 (file)
@@ -56,7 +56,7 @@ Md5Init (
   //\r
   // Check input parameters.\r
   //\r
-  if ((Md5Context == NULL)) {\r
+  if (Md5Context == NULL) {\r
     return FALSE;\r
   }\r
 \r