diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-11 00:25:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-11 00:25:24 +0200 |
commit | 0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad (patch) | |
tree | 0e0cde2972ec2f4897b06942f076ca374c8c7110 /Kernel/Syscalls/rmdir.cpp | |
parent | d53d9d3677703b2e8f6a57fdc512f44a178ddee7 (diff) | |
download | serenity-0d39bd04d3f1ff4347a766e12d52a5a7c101d8ad.zip |
Kernel: Rename VFS => VirtualFileSystem
Diffstat (limited to 'Kernel/Syscalls/rmdir.cpp')
-rw-r--r-- | Kernel/Syscalls/rmdir.cpp | 2 |
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()); } } |