Use uppercase when printing status codes

This commit is contained in:
2024-02-16 22:09:38 +01:00
parent 6d66629124
commit 98acc6f3d4
8 changed files with 26 additions and 26 deletions

View File

@@ -68,7 +68,7 @@ XtEnablePaging(IN PXTBL_PAGE_MAPPING PageMap)
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to exit boot services */
XtLdrProtocol->Debug.Print(L"Failed to exit boot services (Status code: %lx)\n", Status);
XtLdrProtocol->Debug.Print(L"Failed to exit boot services (Status code: %lX)\n", Status);
return STATUS_EFI_ABORTED;
}