From 832833a56f37a92aae1d51b6d6fb2e5dca9d3a90 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 7 Apr 2025 05:38:24 +0000 Subject: [PATCH] fix(kernel/vfs): forgot ';' inside ramfs.hpp --- Kernel/include/filesystem/ramfs.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/include/filesystem/ramfs.hpp b/Kernel/include/filesystem/ramfs.hpp index f94c3c4c..5304352f 100644 --- a/Kernel/include/filesystem/ramfs.hpp +++ b/Kernel/include/filesystem/ramfs.hpp @@ -146,4 +146,4 @@ namespace vfs }; } -bool MountRAMFS(Inode *Parent, const char *Name, size_t Index) +bool MountRAMFS(Inode *Parent, const char *Name, size_t Index);