Kernel: Rename FileDescription => OpenFileDescription

Dr. POSIX really calls these "open file description", not just
"file description", so let's call them exactly that. :^)
This commit is contained in:
Andreas Kling 2021-09-07 13:39:11 +02:00
commit 4a9c18afb9
Notes: sideshowbarker 2024-07-18 04:31:50 +09:00
135 changed files with 680 additions and 680 deletions

View file

@ -8,7 +8,7 @@
namespace Kernel {
FileBackedFileSystem::FileBackedFileSystem(FileDescription& file_description)
FileBackedFileSystem::FileBackedFileSystem(OpenFileDescription& file_description)
: m_file_description(file_description)
{
}