mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 17:25:06 +00:00
Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
fe2b8906d4
commit
9bf76a85c8
5 changed files with 6 additions and 6 deletions
|
@ -805,7 +805,7 @@ DispatchSignalResult Thread::dispatch_signal(u8 signal)
|
|||
u32 ret_eflags = state.eflags;
|
||||
|
||||
#ifdef SIGNAL_DEBUG
|
||||
klog() << "signal: setting up user stack to return to eip: " << String::format("%p", ret_eip) << " esp: " << String::format("%p", old_esp);
|
||||
klog() << "signal: setting up user stack to return to eip: " << String::format("%p", (void*)ret_eip) << " esp: " << String::format("%p", (void*)old_esp);
|
||||
#endif
|
||||
|
||||
// Align the stack to 16 bytes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue