diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-11 00:20:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-11 00:20:38 +0200 |
commit | d53d9d3677703b2e8f6a57fdc512f44a178ddee7 (patch) | |
tree | 358bab68c4be1f88e0fb5897d4b613d37ffce3ac /Kernel/FileSystem/ProcFS.cpp | |
parent | dd65f52331653a445bce9831736d53a246430631 (diff) | |
download | serenity-d53d9d3677703b2e8f6a57fdc512f44a178ddee7.zip |
Kernel: Rename FS => FileSystem
This matches our common naming style better.
Diffstat (limited to 'Kernel/FileSystem/ProcFS.cpp')
-rw-r--r-- | Kernel/FileSystem/ProcFS.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp index 6dac1946a0..33780d599c 100644 --- a/Kernel/FileSystem/ProcFS.cpp +++ b/Kernel/FileSystem/ProcFS.cpp @@ -129,7 +129,7 @@ StringView ProcFSInode::name() const return m_associated_component->name(); } -KResult ProcFSInode::traverse_as_directory(Function<bool(const FS::DirectoryEntryView&)>) const +KResult ProcFSInode::traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)>) const { VERIFY_NOT_REACHED(); } @@ -222,7 +222,7 @@ InodeMetadata ProcFSDirectoryInode::metadata() const metadata.mtime = m_associated_component->modified_time(); return metadata; } -KResult ProcFSDirectoryInode::traverse_as_directory(Function<bool(const FS::DirectoryEntryView&)> callback) const +KResult ProcFSDirectoryInode::traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)> callback) const { Locker locker(m_parent_fs.m_lock); return m_associated_component->traverse_as_directory(m_parent_fs.fsid(), move(callback)); |