Skip to content

Commit

Permalink
Minor fix to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
coderarjob committed Oct 21, 2024
1 parent 246c4b2 commit 91a5900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel/vmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ VMemoryManager* kvmm_new (PTR start, PTR end, Physical pd,

bool kvmm_checkbounds (VMemoryManager* vmm, PTR addr)
{
FUNC_ENTRY ("vmm: %p, address: %x", vmm, addr);
FUNC_ENTRY ("vmm: %px, address: %x", vmm, addr);

k_assert (vmm != NULL, "VMM not provided");

Expand Down

0 comments on commit 91a5900

Please sign in to comment.