Browse Source

Kenrel: Update a dmesgln() to say "RegionTree" instead of old class name

Andreas Kling 3 years ago
parent
commit
92dfcdb6b1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Kernel/Memory/RegionTree.cpp

+ 1 - 1
Kernel/Memory/RegionTree.cpp

@@ -74,7 +74,7 @@ ErrorOr<VirtualRange> RegionTree::allocate_range_anywhere(size_t size, size_t al
             return maybe_range.release_value();
     }
 
-    dmesgln("VirtualRangeAllocator: Failed to allocate anywhere: size={}, alignment={}", size, alignment);
+    dmesgln("RegionTree: Failed to allocate anywhere: size={}, alignment={}", size, alignment);
     return ENOMEM;
 }