mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:37:35 +00:00
Kernel: Rename VFS => VirtualFileSystem
This commit is contained in:
parent
d53d9d3677
commit
0d39bd04d3
38 changed files with 124 additions and 124 deletions
|
@ -22,7 +22,7 @@ KResultOr<FlatPtr> Process::sys$rename(Userspace<const Syscall::SC_rename_params
|
|||
auto new_path = get_syscall_path_argument(params.new_path);
|
||||
if (new_path.is_error())
|
||||
return new_path.error();
|
||||
return VFS::the().rename(old_path.value()->view(), new_path.value()->view(), current_directory());
|
||||
return VirtualFileSystem::the().rename(old_path.value()->view(), new_path.value()->view(), current_directory());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue