Kernel: Make block-based file system code 64 bit ready

This commit is contained in:
Jean-Baptiste Boric 2021-03-18 22:58:21 +01:00 committed by Andreas Kling
commit eea5a5ed5d
Notes: sideshowbarker 2024-07-18 21:14:25 +09:00
3 changed files with 32 additions and 32 deletions

View file

@ -32,7 +32,7 @@ namespace Kernel {
class BlockBasedFS : public FileBackedFS {
public:
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, BlockIndex);
TYPEDEF_DISTINCT_ORDERED_ID(u64, BlockIndex);
virtual ~BlockBasedFS() override;