summaryrefslogtreecommitdiff
path: root/Kernel/API
diff options
context:
space:
mode:
authorJean-Baptiste Boric <jblbeurope@gmail.com>2021-03-13 22:02:54 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-17 23:22:42 +0100
commit7a079f778097502d12d90962a58e422e0d76d14e (patch)
treeea77de7fd574a849e0c627ce7cbb738a1c110642 /Kernel/API
parentb05b4d4b249e7f0025ddf27544c1972e32af80c8 (diff)
downloadserenity-7a079f778097502d12d90962a58e422e0d76d14e.zip
LibC+Kernel: Switch off_t to 64 bits
Diffstat (limited to 'Kernel/API')
-rw-r--r--Kernel/API/Syscall.h2
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;
};