diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-31 17:31:23 +0100 |
commit | ffab6897aa1bc668f98130b4bb485a4602509938 (patch) | |
tree | a4d1933fc390ea0803bb3826353262fbf06b885f /Kernel/init.cpp | |
parent | 27fa09aee492e6c8da9168d24f0b1d2c5d2162d5 (diff) | |
download | serenity-ffab6897aa1bc668f98130b4bb485a4602509938.zip |
Big, possibly complete sweep of naming changes.
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r-- | Kernel/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 0847c8c243..34b6521e9c 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -88,10 +88,10 @@ static void init_stage2() vfs->register_character_device(*tty3); auto dev_hd0 = IDEDiskDevice::create(); - auto e2fs = Ext2FS::create(dev_hd0.copyRef()); + auto e2fs = Ext2FS::create(dev_hd0.copy_ref()); e2fs->initialize(); - vfs->mount_root(e2fs.copyRef()); + vfs->mount_root(e2fs.copy_ref()); load_ksyms(); |