summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/realpath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Syscalls/realpath.cpp')
-rw-r--r--Kernel/Syscalls/realpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/realpath.cpp b/Kernel/Syscalls/realpath.cpp
index cf219bc1a0..b04cd0e317 100644
--- a/Kernel/Syscalls/realpath.cpp
+++ b/Kernel/Syscalls/realpath.cpp
@@ -11,7 +11,7 @@
namespace Kernel {
-KResultOr<FlatPtr> Process::sys$realpath(Userspace<const Syscall::SC_realpath_params*> user_params)
+ErrorOr<FlatPtr> Process::sys$realpath(Userspace<const Syscall::SC_realpath_params*> user_params)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
REQUIRE_PROMISE(rpath);