summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core/RuntimeDxe
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-12 08:51:57 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-12 08:51:57 +0000
commit57dba20b293c5eb10be9a8a55df674b44432336b (patch)
tree240526fb6ce19f8e0bd2e42f4d8ccc0efb74b182 /MdeModulePkg/Core/RuntimeDxe
parentf6d2bcc6fa8161d20ff2b3601c94c566b5a9bc35 (diff)
downloadedk2-platforms-57dba20b293c5eb10be9a8a55df674b44432336b.tar.xz
Change EFI_OPTIONAL_POINTER to EFI_OPTIONAL_PTR
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7015 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/RuntimeDxe')
-rw-r--r--MdeModulePkg/Core/RuntimeDxe/Runtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/RuntimeDxe/Runtime.c b/MdeModulePkg/Core/RuntimeDxe/Runtime.c
index 98134c21b7..8fdc6fad9d 100644
--- a/MdeModulePkg/Core/RuntimeDxe/Runtime.c
+++ b/MdeModulePkg/Core/RuntimeDxe/Runtime.c
@@ -151,7 +151,7 @@ RuntimeDriverConvertPointer (
// If this is a null pointer, return if it's allowed
//
if (Address == 0) {
- if ((DebugDisposition & EFI_OPTIONAL_POINTER) != 0) {
+ if ((DebugDisposition & EFI_OPTIONAL_PTR) != 0) {
return EFI_SUCCESS;
}