diff options
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 355b6ed56d..07226edbcf 100644 --- a/Kernel/FileSystem/File.cpp +++ b/Kernel/FileSystem/File.cpp @@ -40,7 +40,7 @@ KResult File::ioctl(FileDescription&, unsigned, Userspace<void*>) return ENOTTY; } -KResultOr<Region*> File::mmap(Process&, FileDescription&, const Range&, u64, int, bool) +KResultOr<Memory::Region*> File::mmap(Process&, FileDescription&, Memory::Range const&, u64, int, bool) { return ENODEV; } |