diff options
Diffstat (limited to 'Kernel/Syscalls/sysconf.cpp')
-rw-r--r-- | Kernel/Syscalls/sysconf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/sysconf.cpp b/Kernel/Syscalls/sysconf.cpp index 0b1e575731..9460b7c585 100644 --- a/Kernel/Syscalls/sysconf.cpp +++ b/Kernel/Syscalls/sysconf.cpp @@ -9,7 +9,7 @@ namespace Kernel { -KResultOr<long> Process::sys$sysconf(int name) +KResultOr<FlatPtr> Process::sys$sysconf(int name) { switch (name) { case _SC_MONOTONIC_CLOCK: |