diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-16 01:22:26 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-16 01:22:26 +0000 |
commit | 631c199143d55ca5f47933fd9c207e6ab927af1a (patch) | |
tree | 1f4b64c0ddb096d8d1e78497ff4da6c10284e96c /MdeModulePkg/Universal/DebugSupportDxe | |
parent | 572f5d8a7b704eed9f54381b6bb3a6e3a3e79816 (diff) | |
download | edk2-platforms-631c199143d55ca5f47933fd9c207e6ab927af1a.tar.xz |
Fix a porting issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5480 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/DebugSupportDxe')
-rw-r--r-- | MdeModulePkg/Universal/DebugSupportDxe/Ia32/plDebugSupport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/DebugSupportDxe/Ia32/plDebugSupport.c b/MdeModulePkg/Universal/DebugSupportDxe/Ia32/plDebugSupport.c index 1eaa5ec591..d7f254b15f 100644 --- a/MdeModulePkg/Universal/DebugSupportDxe/Ia32/plDebugSupport.c +++ b/MdeModulePkg/Universal/DebugSupportDxe/Ia32/plDebugSupport.c @@ -180,7 +180,7 @@ Returns: Status = EFI_SUCCESS;
- if (FeaturePcdGet (PcdNtEmulatorEnable)) {
+ if (!FeaturePcdGet (PcdNtEmulatorEnable)) {
if (CompareDescriptor (&IdtEntryTable[ExceptionType].NewDesc, &NullDesc)) {
//
// we've already installed to this vector
|