Properly print status codes

This commit is contained in:
2024-02-16 23:01:29 +01:00
parent 70c66a5d70
commit a70df7cbf8
10 changed files with 55 additions and 55 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%zX)\n", Status);
return Status;
}