mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +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
Notes:
sideshowbarker
2024-07-18 23:55:51 +09:00
Author: https://github.com/ccapitalK
Commit: 9bf76a85c8
Pull-request: https://github.com/SerenityOS/serenity/pull/4900
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