summaryrefslogtreecommitdiff
path: root/Kernel/Panic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Panic.cpp')
-rw-r--r--Kernel/Panic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Panic.cpp b/Kernel/Panic.cpp
index 34100a1bdb..f2f20accc6 100644
--- a/Kernel/Panic.cpp
+++ b/Kernel/Panic.cpp
@@ -24,7 +24,7 @@ namespace Kernel {
Processor::halt();
}
-void __panic(const char* file, unsigned int line, const char* function)
+void __panic(char const* file, unsigned int line, char const* function)
{
// Avoid lock ranking checks on crashing paths, just try to get some debugging messages out.
auto* thread = Thread::current();