summaryrefslogtreecommitdiff
path: root/LibC/stdlib.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-17 13:12:59 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-17 13:12:59 +0100
commit0730b3c15fdc537e365fde0c307bea3fb615a43e (patch)
tree56203bfc1d81590b8f4d36775224def37dadefe3 /LibC/stdlib.cpp
parent8321908abe7a3cfef4b90f80f40e6fa004cc8927 (diff)
downloadserenity-0730b3c15fdc537e365fde0c307bea3fb615a43e.zip
Add ability to switch video modes from the system menu.
I had to change PhysicalPage around a bit for this. Physical pages can now be instantiated for any arbitrary physical address without worrying that such pages end up in the kernel page allocator when released. Most of the pieces were already in place, I just glued everything together.
Diffstat (limited to 'LibC/stdlib.cpp')
-rw-r--r--LibC/stdlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/stdlib.cpp b/LibC/stdlib.cpp
index 4adaa0ee81..2b03f9e59b 100644
--- a/LibC/stdlib.cpp
+++ b/LibC/stdlib.cpp
@@ -50,7 +50,7 @@ void* malloc(size_t size)
size_t real_size = size + sizeof(MallocHeader) + sizeof(MallocFooter);
if (s_malloc_sum_free < real_size) {
- fprintf(stderr, "malloc(): Out of memory\ns_malloc_sum_free=%u, real_size=%x\n", s_malloc_sum_free, real_size);
+ fprintf(stderr, "malloc(): Out of memory\ns_malloc_sum_free=%u, real_size=%u\n", s_malloc_sum_free, real_size);
assert(false);
}