diff options
Diffstat (limited to 'Kernel/Syscalls/utime.cpp')
-rw-r--r-- | Kernel/Syscalls/utime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/utime.cpp b/Kernel/Syscalls/utime.cpp index f7ec599339..a5f8b9e80d 100644 --- a/Kernel/Syscalls/utime.cpp +++ b/Kernel/Syscalls/utime.cpp @@ -10,7 +10,7 @@ namespace Kernel { -KResultOr<int> Process::sys$utime(Userspace<const char*> user_path, size_t path_length, Userspace<const struct utimbuf*> user_buf) +KResultOr<FlatPtr> Process::sys$utime(Userspace<const char*> user_path, size_t path_length, Userspace<const struct utimbuf*> user_buf) { REQUIRE_PROMISE(fattr); auto path = get_syscall_path_argument(user_path, path_length); |