1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:58:11 +00:00

Kernel: VFS::open/create should take base Inode& instead of InodeIdentifier.

This commit is contained in:
Andreas Kling 2019-02-01 15:36:45 +01:00
parent 6618411fba
commit feed67ede2
4 changed files with 14 additions and 14 deletions

View file

@ -122,7 +122,7 @@ void init_ksyms()
void load_ksyms()
{
int error;
auto descriptor = VFS::the().open("/kernel.map", error, 0, 0);
auto descriptor = VFS::the().open("/kernel.map", error, 0, 0, *VFS::the().root_inode());
if (!descriptor) {
kprintf("Failed to open /kernel.map\n");
} else {