summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/unlink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Syscalls/unlink.cpp')
-rw-r--r--Kernel/Syscalls/unlink.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/unlink.cpp b/Kernel/Syscalls/unlink.cpp
index 98526ed9f9..8d39f9ed6a 100644
--- a/Kernel/Syscalls/unlink.cpp
+++ b/Kernel/Syscalls/unlink.cpp
@@ -10,7 +10,7 @@
namespace Kernel {
-ErrorOr<FlatPtr> Process::sys$unlink(Userspace<const char*> user_path, size_t path_length)
+ErrorOr<FlatPtr> Process::sys$unlink(Userspace<char const*> user_path, size_t path_length)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
TRY(require_promise(Pledge::cpath));