aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/rootfs/rootfs_filesystem.cpp
diff options
context:
space:
mode:
authorLukas Oesch <lukasoesch20@gmail.com>2026-03-28 17:28:32 +0100
committerLukas Oesch <lukasoesch20@gmail.com>2026-03-28 17:28:32 +0100
commita6f93bf8df0dbfa7d19aa1168bfc8b052e41c42f (patch)
treeb07657406fd2ce67e69819326b0c76e9409ef77c /kernel/src/filesystem/rootfs/rootfs_filesystem.cpp
parent4f7ae11655807acf68f49637cc9dd01a03af36d5 (diff)
downloadteachos-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.cpp2
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");