1
0
원본 프로젝트 : xt-sys/exectos

Corrections in printing debug messages

This commit is contained in:
2024-03-13 15:55:03 +01:00
부모 26d5118cea
커밋 e6736087ba
2개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@@ -59,6 +59,7 @@ XtEnablePaging(IN PXTBL_PAGE_MAPPING PageMap)
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to build page map */
XtLdrProtocol->Debug.Print(L"Failed to build page map (Status code: %zX)\n", Status);
return Status;
}
@@ -68,7 +69,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: %zX)\n", Status);
return STATUS_EFI_ABORTED;
}