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
This commit is contained in:
lgao4 2008-12-12 08:51:57 +00:00
parent f6d2bcc6fa
commit 57dba20b29
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}