kernel/x86/pae: fix build with TRACE enabled

Change-Id: Ifbf979608978a66ad6d2b9af8002c39f1f205422
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5661
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
This commit is contained in:
David Karoly 2022-09-14 23:33:10 +02:00 committed by Jérôme Duval
parent f9be2680d9
commit e98ad6fc50

View File

@ -975,7 +975,7 @@ X86VMTranslationMapPAE::QueryInterrupt(addr_t virtualAddress,
| ((entry & X86_PAE_PTE_PRESENT) != 0 ? PAGE_PRESENT : 0); | ((entry & X86_PAE_PTE_PRESENT) != 0 ? PAGE_PRESENT : 0);
TRACE("X86VMTranslationMapPAE::Query(%#" B_PRIxADDR ") -> %#" TRACE("X86VMTranslationMapPAE::Query(%#" B_PRIxADDR ") -> %#"
B_PRIxPHYSADDR ":\n", *_physicalAddress, virtualAddress); B_PRIxPHYSADDR ":\n", virtualAddress, *_physicalAddress);
return B_OK; return B_OK;
} }