diff options
Diffstat (limited to 'Kernel/Thread.cpp')
-rw-r--r-- | Kernel/Thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Thread.cpp b/Kernel/Thread.cpp index 9ba54f4ef5..bf5922db44 100644 --- a/Kernel/Thread.cpp +++ b/Kernel/Thread.cpp @@ -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. |