diff options
Diffstat (limited to 'kapi')
| -rw-r--r-- | kapi/kapi/memory/layout.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kapi/kapi/memory/layout.hpp b/kapi/kapi/memory/layout.hpp index 5f720a51..a39997ac 100644 --- a/kapi/kapi/memory/layout.hpp +++ b/kapi/kapi/memory/layout.hpp @@ -13,12 +13,12 @@ namespace kapi::memory //! The size of a single page of virtual memory. //! //! Platforms that use different sizes of pages are expected to emulate 4 KiB pages towards the kernel. - constexpr auto page_size = kstd::units::KiB(4); + constexpr auto page_size = kstd::units::KiB(4u); //! The size of a single frame of physical memory. //! //! Platforms that use different sizes of frames are expected to emulate 4 KiB pages towards the kernel. - constexpr auto frame_size = kstd::units::KiB(4); + constexpr auto frame_size = kstd::units::KiB(4u); //! The linear base address of the higher-half direct map. //! |
