mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
Kernel/FATFS: Pass the FATEntry location to FATInode constructor
This is going to be necessary to flush the metadata later on.
This commit is contained in:
@@ -237,7 +237,7 @@ ErrorOr<void> FATFS::initialize_while_locked()
|
||||
}
|
||||
|
||||
root_entry.attributes = FATAttributes::Directory;
|
||||
m_root_inode = TRY(FATInode::create(*this, root_entry));
|
||||
m_root_inode = TRY(FATInode::create(*this, root_entry, { 0, 1 }));
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user