Fix build error

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5904 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2008-09-16 12:53:15 +00:00
parent 11074aabe1
commit bab3f2d3ac
1 changed files with 2 additions and 1 deletions

View File

@ -87,8 +87,9 @@ InternalReportStatusCode (
} else { } else {
#if (EFI_SPECIFICATION_VERSION < 0x00020000) #if (EFI_SPECIFICATION_VERSION < 0x00020000)
return (gRT->ReportStatusCode) (Type, Value, Instance, (EFI_GUID *)CallerId, Data); return (gRT->ReportStatusCode) (Type, Value, Instance, (EFI_GUID *)CallerId, Data);
#endif #else
return EFI_UNSUPPORTED; return EFI_UNSUPPORTED;
#endif
} }
} }