From ea8d3861467347b538162754745ce6132d08e161 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 2 Feb 2020 19:00:38 +0100 Subject: [PATCH] Kernel: Update Thread::raw_backtrace() signature to use uintptr_t --- Kernel/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }