diff options
| author | Lukas Oesch <lukasoesch20@gmail.com> | 2026-03-28 17:28:32 +0100 |
|---|---|---|
| committer | Lukas Oesch <lukasoesch20@gmail.com> | 2026-03-28 17:28:32 +0100 |
| commit | a6f93bf8df0dbfa7d19aa1168bfc8b052e41c42f (patch) | |
| tree | b07657406fd2ce67e69819326b0c76e9409ef77c /kernel/src/filesystem/rootfs/rootfs_filesystem.cpp | |
| parent | 4f7ae11655807acf68f49637cc9dd01a03af36d5 (diff) | |
| download | teachos-a6f93bf8df0dbfa7d19aa1168bfc8b052e41c42f.tar.xz teachos-a6f93bf8df0dbfa7d19aa1168bfc8b052e41c42f.zip | |
fix vfs mount with /dev & /a and rootfs & devfs
Diffstat (limited to 'kernel/src/filesystem/rootfs/rootfs_filesystem.cpp')
| -rw-r--r-- | kernel/src/filesystem/rootfs/rootfs_filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/src/filesystem/rootfs/rootfs_filesystem.cpp b/kernel/src/filesystem/rootfs/rootfs_filesystem.cpp index e819fc7..22502aa 100644 --- a/kernel/src/filesystem/rootfs/rootfs_filesystem.cpp +++ b/kernel/src/filesystem/rootfs/rootfs_filesystem.cpp @@ -10,7 +10,7 @@ namespace filesystem::rootfs { - auto rootfs_filesystem::mount(kstd::shared_ptr<devices::device> const & /*device*/) -> int + auto rootfs_filesystem::mount(kstd::shared_ptr<devices::device> const &) -> int { auto rfs_inode = kstd::make_shared<rootfs_inode>(); rfs_inode->add_child("dev"); |
