Kernel: VFS::file_from_absolute_path now used root_file() API
This commit is contained in:
parent
2911d1f018
commit
7feb4c4ebd
|
@ -67,7 +67,7 @@ namespace Kernel
|
|||
BAN::ErrorOr<File> file_from_relative_path(const File& parent, const Credentials&, BAN::StringView, int);
|
||||
BAN::ErrorOr<File> file_from_absolute_path(const Credentials& credentials, BAN::StringView path, int flags)
|
||||
{
|
||||
return file_from_relative_path(File(root_inode()), credentials, path, flags);
|
||||
return file_from_relative_path(root_file(), credentials, path, flags);
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue