diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-03-18 22:57:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-19 09:15:19 +0100 |
commit | 6698fd84fff34f9fb2dec78c20519b5c89b2c8f9 (patch) | |
tree | 67631de5cb5b4a950d8bb9a244bf446e674ce151 /Kernel/FileSystem/File.cpp | |
parent | 0d8c9024eec12d57270cca1cf6bfc7d03c0ca229 (diff) | |
download | serenity-6698fd84fff34f9fb2dec78c20519b5c89b2c8f9.zip |
Kernel: Refactor storage stack with u64 as mmap offset
Diffstat (limited to 'Kernel/FileSystem/File.cpp')
-rw-r--r-- | Kernel/FileSystem/File.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/File.cpp b/Kernel/FileSystem/File.cpp index fcf1f99075..ed141ff1d6 100644 --- a/Kernel/FileSystem/File.cpp +++ b/Kernel/FileSystem/File.cpp @@ -59,7 +59,7 @@ int File::ioctl(FileDescription&, unsigned, FlatPtr) return -ENOTTY; } -KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, size_t, int, bool) +KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, u64, int, bool) { return ENODEV; } |