mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 08:06:09 +00:00
Kernel: Display virtual addresses as V%p instead of L%x
The L was a leftover from when these were called linear addresses.
This commit is contained in:
@@ -261,7 +261,7 @@ Process* Process::fork(RegisterDump& regs)
|
||||
|
||||
for (auto& region : m_regions) {
|
||||
#ifdef FORK_DEBUG
|
||||
dbgprintf("fork: cloning Region{%p} \"%s\" L%x\n", region.ptr(), region->name().characters(), region->vaddr().get());
|
||||
dbgprintf("fork: cloning Region{%p} \"%s\" V%08x\n", region.ptr(), region->name().characters(), region->vaddr().get());
|
||||
#endif
|
||||
auto cloned_region = region.clone();
|
||||
child->m_regions.append(move(cloned_region));
|
||||
|
||||
Reference in New Issue
Block a user