1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 10:14:58 +00:00

Kernel: Rename FileBackedFS => FileBackedFileSystem

This commit is contained in:
Andreas Kling 2021-07-11 00:33:27 +02:00
parent 07c4c89297
commit 502bbacea0
8 changed files with 15 additions and 15 deletions

View file

@ -128,7 +128,7 @@ bool VirtualFileSystem::mount_root(FileSystem& fs)
}
m_root_inode = move(root_inode);
dmesgln("VirtualFileSystem: mounted root from {} ({})", fs.class_name(), static_cast<FileBackedFS&>(fs).file_description().absolute_path());
dmesgln("VirtualFileSystem: mounted root from {} ({})", fs.class_name(), static_cast<FileBackedFileSystem&>(fs).file_description().absolute_path());
m_mounts.append(move(mount));