diff options
author | Fu Siyuan <siyuan.fu@intel.com> | 2013-10-09 03:46:46 +0000 |
---|---|---|
committer | sfu5 <sfu5@6f19259b-4bc3-4df7-8a09-765794883524> | 2013-10-09 03:46:46 +0000 |
commit | 5ecc20b5536b952f18b8d92c242145954a61a6ab (patch) | |
tree | 23252ff50c07c8f83e7a36d30acae36e5acbfdc7 /SecurityPkg | |
parent | 22f89647b01733d5c75f07da31c07d18046e198d (diff) | |
download | edk2-platforms-5ecc20b5536b952f18b8d92c242145954a61a6ab.tar.xz |
Fix coding style issue.
Signed-off-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
Reviewed-by: Dong Guo <guo.dong@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14755 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg')
-rw-r--r-- | SecurityPkg/VariableAuthenticated/RuntimeDxe/AuthService.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SecurityPkg/VariableAuthenticated/RuntimeDxe/AuthService.c b/SecurityPkg/VariableAuthenticated/RuntimeDxe/AuthService.c index 71de272bf2..8e9135709c 100644 --- a/SecurityPkg/VariableAuthenticated/RuntimeDxe/AuthService.c +++ b/SecurityPkg/VariableAuthenticated/RuntimeDxe/AuthService.c @@ -1089,7 +1089,7 @@ ProcessVarWithPk ( return Status;
}
- if (mPlatformMode != SETUP_MODE || IsPk) {
+ if ((mPlatformMode != SETUP_MODE) || IsPk) {
Status = VendorKeyIsModified ();
}
} else if (mPlatformMode == USER_MODE) {
|