From bf94209175e843462ef9965fc7003452d55ea041 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 17 Nov 2025 18:39:03 -0500 Subject: kern: vm: Fix typo in VIRT_TO_PHYS() Signed-off-by: Ian Moffett --- sys/inc/vm/vm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/inc/vm/vm.h b/sys/inc/vm/vm.h index daf865f..ec6e6e7 100644 --- a/sys/inc/vm/vm.h +++ b/sys/inc/vm/vm.h @@ -39,7 +39,7 @@ extern volatile struct limine_hhdm_request hhdm_req; #define PAGESIZE 0x1000 #define KERN_BASE hhdm_req.response->offset #define PHYS_TO_VIRT(PHYS) PTR_OFFSET(PHYS, KERN_BASE) -#define VIRT_TO_PHYS(VIRT) (uintptr_t)PTR_NOFFET(VIRT, KERN_BASE) +#define VIRT_TO_PHYS(VIRT) (uintptr_t)PTR_NOFFSET(VIRT, KERN_BASE) /* * Initialize the virtual memory management -- cgit v1.2.3