diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-25 20:19:35 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-25 22:41:17 +0200 |
commit | 664ca58746041e412bb66fac5b638d8306c27262 (patch) | |
tree | d40c3de4fe622043f783960429a9c0eb43a2f969 /Kernel/FileSystem/File.h | |
parent | 9ce537d7036bf4aff61d4ce10e7fe0b134c122b3 (diff) | |
download | serenity-664ca58746041e412bb66fac5b638d8306c27262.zip |
Kernel: Use u64 instead of size_t for File::can_write offset
This ensures offsets will not be truncated on large files on i686.
Diffstat (limited to 'Kernel/FileSystem/File.h')
-rw-r--r-- | Kernel/FileSystem/File.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/File.h b/Kernel/FileSystem/File.h index 40677d6fc1..cdc66fd9d8 100644 --- a/Kernel/FileSystem/File.h +++ b/Kernel/FileSystem/File.h @@ -82,7 +82,7 @@ public: virtual ErrorOr<void> close(); virtual bool can_read(const OpenFileDescription&, u64) const = 0; - virtual bool can_write(const OpenFileDescription&, size_t) const = 0; + virtual bool can_write(const OpenFileDescription&, u64) const = 0; virtual ErrorOr<void> attach(OpenFileDescription&); virtual void detach(OpenFileDescription&); |