aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-08-18 13:34:48 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-08-18 13:34:48 +0200
commit5754a8591252da5d5eeb4281064f0b82bfdc03a8 (patch)
tree163fb25c7bda6a90a3d71abfdd4d34cf1fd16e04 /kernel
parentf3fc901290c65ec8a4c025c30a316cb2ac5dd53d (diff)
downloadkernel-5754a8591252da5d5eeb4281064f0b82bfdc03a8.tar.xz
kernel-5754a8591252da5d5eeb4281064f0b82bfdc03a8.zip
kernel: fix test build issues
Diffstat (limited to 'kernel')
-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;