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++)