From 3b0f165c4f80f49bbb2c1454d2b5fb3885da8004 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 30 Jul 2012 18:56:02 +0200 Subject: [PATCH] Fixed bad declaration of MapPAT in x86-family/memorymanagement.h. --- sortix/x86-family/memorymanagement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/x86-family/memorymanagement.h b/sortix/x86-family/memorymanagement.h index e35ca1c7..f26add07 100644 --- a/sortix/x86-family/memorymanagement.h +++ b/sortix/x86-family/memorymanagement.h @@ -86,7 +86,7 @@ namespace Sortix if ( pat & 0x4 ) { result |= PML_PAT; } return result; } - bool Map(addr_t physical, addr_t mapto, int prot, addr_t mtype); + bool MapPAT(addr_t physical, addr_t mapto, int prot, addr_t mtype); addr_t ProtectionToPMLFlags(int prot); int PMLFlagsToProtection(addr_t flags); }