diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-12 08:51:57 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-12 08:51:57 +0000 |
commit | 57dba20b293c5eb10be9a8a55df674b44432336b (patch) | |
tree | 240526fb6ce19f8e0bd2e42f4d8ccc0efb74b182 | |
parent | f6d2bcc6fa8161d20ff2b3601c94c566b5a9bc35 (diff) | |
download | edk2-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
-rw-r--r-- | MdeModulePkg/Core/RuntimeDxe/Runtime.c | 2 |
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;
}
|