From 6698fd84fff34f9fb2dec78c20519b5c89b2c8f9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Boric Date: Thu, 18 Mar 2021 22:57:25 +0100 Subject: Kernel: Refactor storage stack with u64 as mmap offset --- Kernel/FileSystem/File.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/FileSystem/File.cpp') 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 File::mmap(Process&, FileDescription&, const Range&, size_t, int, bool) +KResultOr File::mmap(Process&, FileDescription&, const Range&, u64, int, bool) { return ENODEV; } -- cgit v1.2.3