From 16bec7c880924ac6dddb3feb4c211eebaf1a342a Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 5 May 2025 18:11:26 +0200 Subject: [PATCH] base: Fixed compiler warning. --- repos/base/include/base/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/include/base/heap.h b/repos/base/include/base/heap.h index 1abd508bdb..0bb7355694 100644 --- a/repos/base/include/base/heap.h +++ b/repos/base/include/base/heap.h @@ -119,7 +119,7 @@ class Genode::Heap : public Allocator public: - static constexpr size_t UNLIMITED = ~0; + static constexpr size_t UNLIMITED = ~0UL; Heap(Ram_allocator *ram_allocator, Region_map *region_map,