From b8f48fd21205b82ede6829751d1fd78d97b37c35 Mon Sep 17 00:00:00 2001 From: david-on-debian Date: Sun, 6 Jul 2025 20:42:04 -0500 Subject: [PATCH] Update lib/mm/paging.c --- lib/mm/paging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mm/paging.c b/lib/mm/paging.c index 6e45cf5..c20d73f 100644 --- a/lib/mm/paging.c +++ b/lib/mm/paging.c @@ -23,7 +23,7 @@ void paging_init(void) page_directory = (page_directory_entry_t*)alloc_page(); memset(page_directory, 0, PAGE_SIZE); - /* Allocate and set up the first identity-mapped page table (0–4MB) */ + /* Allocate and set up the first identity-mapped page table (0-4MB) */ page_tables[0] = (page_table_entry_t*)alloc_page(); memset(page_tables[0], 0, PAGE_SIZE); for (uint32_t i = 0; i < PAGE_TABLE_ENTRIES; i++)