mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 23:55:12 +00:00
Kernel: VFS::open/create should take base Inode& instead of InodeIdentifier.
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user