Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
OcAppleBootCompatLib: Change bytes to kilobytes
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Oct 14, 2019
1 parent 8fee6e6 commit 12a2709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Library/OcAppleBootCompatLib/ServiceOverrides.c
Expand Up @@ -249,8 +249,8 @@ DevirtualiseMmio (
if (!((BOOT_COMPAT_CONTEXT *) Context)->ServiceState.ReportedMmio) {
DEBUG ((
DEBUG_INFO,
"OCABC: MMIO devirt end, saved %Lu bytes\n",
EFI_PAGES_TO_SIZE (PagesSaved)
"OCABC: MMIO devirt end, saved %Lu KB\n",
EFI_PAGES_TO_SIZE (PagesSaved) / BASE_1KB
));
((BOOT_COMPAT_CONTEXT *) Context)->ServiceState.ReportedMmio = TRUE;
}
Expand Down

0 comments on commit 12a2709

Please sign in to comment.