1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +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

@ -353,7 +353,7 @@ private:
fs_object.add("mount_flags", mount.flags());
if (fs.is_file_backed())
fs_object.add("source", static_cast<const FileBackedFS&>(fs).file_description().absolute_path());
fs_object.add("source", static_cast<const FileBackedFileSystem&>(fs).file_description().absolute_path());
else
fs_object.add("source", "none");
});