summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/rmdir.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-07-11 00:25:24 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-11 00:25:24 +0200
commit0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad (patch)
tree0e0cde2972ec2f4897b06942f076ca374c8c7110 /Kernel/Syscalls/rmdir.cpp
parentd53d9d3677703b2e8f6a57fdc512f44a178ddee7 (diff)
downloadserenity-0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad.zip
Kernel: Rename VFS => VirtualFileSystem
Diffstat (limited to 'Kernel/Syscalls/rmdir.cpp')
-rw-r--r--Kernel/Syscalls/rmdir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/rmdir.cpp b/Kernel/Syscalls/rmdir.cpp
index 2a7e9115f1..d6f6306c25 100644
--- a/Kernel/Syscalls/rmdir.cpp
+++ b/Kernel/Syscalls/rmdir.cpp
@@ -16,7 +16,7 @@ KResultOr<FlatPtr> Process::sys$rmdir(Userspace<const char*> user_path, size_t p
auto path = get_syscall_path_argument(user_path, path_length);
if (path.is_error())
return path.error();
- return VFS::the().rmdir(path.value()->view(), current_directory());
+ return VirtualFileSystem::the().rmdir(path.value()->view(), current_directory());
}
}