Use uppercase when printing status codes
All checks were successful
Builds / ExectOS (i686) (push) Successful in 31s
Builds / ExectOS (amd64) (push) Successful in 34s

This commit is contained in:
2024-02-16 22:03:00 +01:00
parent 109fd094ea
commit c99bd73dfd
7 changed files with 36 additions and 36 deletions

View File

@@ -32,7 +32,7 @@ BlExitBootServices()
if(Status != STATUS_EFI_SUCCESS)
{
/* Memory allocation failure */
BlDebugPrint(L"ERROR: Memory allocation failure (Status Code: 0x%lx)\n", Status);
BlDebugPrint(L"ERROR: Memory allocation failure (Status Code: 0x%lX)\n", Status);
return Status;
}