CryptoPkg: remove redundant parentheses

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
This commit is contained in:
Bruce Cran 2015-07-14 02:57:38 +00:00 committed by qlong
parent b134fe98aa
commit 8ca8dd9b05
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ Md5Init (
//
// Check input parameters.
//
if ((Md5Context == NULL)) {
if (Md5Context == NULL) {
return FALSE;
}