diff --git a/Kernel/Thread.h b/Kernel/Thread.h index 1082a8606a..f56bdf8f28 100644 --- a/Kernel/Thread.h +++ b/Kernel/Thread.h @@ -101,7 +101,7 @@ public: const Process& process() const { return m_process; } String backtrace(ProcessInspectionHandle&) const; - Vector raw_backtrace(u32 ebp) const; + Vector raw_backtrace(uintptr_t ebp) const; const String& name() const { return m_name; } void set_name(StringView s) { m_name = s; }