From 4a9c18afb9b9c7fde698e93700e661d66e3ed34d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 7 Sep 2021 13:39:11 +0200 Subject: Kernel: Rename FileDescription => OpenFileDescription Dr. POSIX really calls these "open file description", not just "file description", so let's call them exactly that. :^) --- Kernel/Storage/StorageManagement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Storage/StorageManagement.cpp') diff --git a/Kernel/Storage/StorageManagement.cpp b/Kernel/Storage/StorageManagement.cpp index 8053a93e1a..fd8fa9b23a 100644 --- a/Kernel/Storage/StorageManagement.cpp +++ b/Kernel/Storage/StorageManagement.cpp @@ -183,7 +183,7 @@ NonnullRefPtr StorageManagement::root_filesystem() const if (!boot_device_description) { PANIC("StorageManagement: Couldn't find a suitable device to boot from"); } - auto description_or_error = FileDescription::try_create(boot_device_description.release_nonnull()); + auto description_or_error = OpenFileDescription::try_create(boot_device_description.release_nonnull()); VERIFY(!description_or_error.is_error()); auto file_system = Ext2FS::try_create(description_or_error.release_value()).release_value(); -- cgit v1.2.3