diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-03-13 22:02:54 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-17 23:22:42 +0100 |
commit | 7a079f778097502d12d90962a58e422e0d76d14e (patch) | |
tree | ea77de7fd574a849e0c627ce7cbb738a1c110642 /Kernel/API | |
parent | b05b4d4b249e7f0025ddf27544c1972e32af80c8 (diff) | |
download | serenity-7a079f778097502d12d90962a58e422e0d76d14e.zip |
LibC+Kernel: Switch off_t to 64 bits
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/Syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h index 4c873e2688..88aa5a1313 100644 --- a/Kernel/API/Syscall.h +++ b/Kernel/API/Syscall.h @@ -244,7 +244,7 @@ struct SC_mmap_params { int32_t prot; int32_t flags; int32_t fd; - ssize_t offset; + int64_t offset; StringArgument name; }; |