aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kernel/kernel/test_support/kapi/memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kernel/test_support/kapi/memory.cpp b/kernel/kernel/test_support/kapi/memory.cpp
index 33b725bd..01fc078a 100644
--- a/kernel/kernel/test_support/kapi/memory.cpp
+++ b/kernel/kernel/test_support/kapi/memory.cpp
@@ -12,8 +12,8 @@
namespace
{
//! The size of the simulated RAM.
- constexpr auto physical_size = kstd::units::MiB(32);
- constexpr auto virtual_size = kstd::units::GiB(1);
+ constexpr auto physical_size = kstd::units::MiB(32u);
+ constexpr auto virtual_size = kstd::units::GiB(1u);
constexpr auto number_of_frames = physical_size / kapi::memory::frame::size;