summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/times.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Syscalls/times.cpp')
-rw-r--r--Kernel/Syscalls/times.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/times.cpp b/Kernel/Syscalls/times.cpp
index b1161bcd4b..d8803bda88 100644
--- a/Kernel/Syscalls/times.cpp
+++ b/Kernel/Syscalls/times.cpp
@@ -8,7 +8,7 @@
namespace Kernel {
-KResultOr<FlatPtr> Process::sys$times(Userspace<tms*> user_times)
+ErrorOr<FlatPtr> Process::sys$times(Userspace<tms*> user_times)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
REQUIRE_PROMISE(stdio);