mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Kernel: Rename VFS => VirtualFileSystem
This commit is contained in:
parent
d53d9d3677
commit
0d39bd04d3
Notes:
sideshowbarker
2024-07-18 09:22:16 +09:00
Author: https://github.com/awesomekling
Commit: 0d39bd04d3
38 changed files with 124 additions and 124 deletions
|
@ -16,7 +16,7 @@ KResultOr<FlatPtr> Process::sys$unlink(Userspace<const char*> user_path, size_t
|
|||
auto path = get_syscall_path_argument(user_path, path_length);
|
||||
if (path.is_error())
|
||||
return path.error();
|
||||
return VFS::the().unlink(path.value()->view(), current_directory());
|
||||
return VirtualFileSystem::the().unlink(path.value()->view(), current_directory());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue