diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-31 01:22:00 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-31 01:22:00 +0100 |
commit | 54d182f5532ecde80549644db95969847c6a7368 (patch) | |
tree | db5bfacc189f860419057b054d45b81a0ebd1eef /Kernel/Devices/BXVGADevice.cpp | |
parent | 66d5ebafa658b84e512cdee13bdf7e17ef5c56e1 (diff) | |
download | serenity-54d182f5532ecde80549644db95969847c6a7368.zip |
Kernel: Remove some unnecessary leaking of kernel pointers into dmesg
There's a lot more of this and we need to stop printing kernel pointers
anywhere but the debug console.
Diffstat (limited to 'Kernel/Devices/BXVGADevice.cpp')
-rw-r--r-- | Kernel/Devices/BXVGADevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Devices/BXVGADevice.cpp b/Kernel/Devices/BXVGADevice.cpp index b7520c6c95..a45305f1d6 100644 --- a/Kernel/Devices/BXVGADevice.cpp +++ b/Kernel/Devices/BXVGADevice.cpp @@ -96,7 +96,7 @@ KResultOr<Region*> BXVGADevice::mmap(Process& process, FileDescription&, Virtual 0, "BXVGA Framebuffer", prot); - kprintf("BXVGA: %s(%u) created Region{%p} with size %u for framebuffer P%x with vaddr V%p\n", + dbgprintf("BXVGA: %s(%u) created Region{%p} with size %u for framebuffer P%x with vaddr V%p\n", process.name().characters(), process.pid(), region, region->size(), m_framebuffer_address.as_ptr(), region->vaddr().get()); ASSERT(region); |