mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
Kernel: Rename FileBackedFS => FileBackedFileSystem
This commit is contained in:
@@ -64,8 +64,8 @@ public:
|
||||
|
||||
if (m_clean_list.is_empty()) {
|
||||
// Not a single clean entry! Flush writes and try again.
|
||||
// NOTE: We want to make sure we only call FileBackedFS flush here,
|
||||
// not some FileBackedFS subclass flush!
|
||||
// NOTE: We want to make sure we only call FileBackedFileSystem flush here,
|
||||
// not some FileBackedFileSystem subclass flush!
|
||||
m_fs.flush_writes_impl();
|
||||
return get(block_index);
|
||||
}
|
||||
@@ -105,7 +105,7 @@ private:
|
||||
};
|
||||
|
||||
BlockBasedFS::BlockBasedFS(FileDescription& file_description)
|
||||
: FileBackedFS(file_description)
|
||||
: FileBackedFileSystem(file_description)
|
||||
{
|
||||
VERIFY(file_description.file().is_seekable());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user