diff --git a/Kernel/FileSystem/Inode.cpp b/Kernel/FileSystem/Inode.cpp index bc248f45f54..52b15a4f726 100644 --- a/Kernel/FileSystem/Inode.cpp +++ b/Kernel/FileSystem/Inode.cpp @@ -52,7 +52,6 @@ void Inode::sync() if (result.is_error()) { // TODO: Figure out how to propagate error to a higher function. } - } ErrorOr> Inode::resolve_as_link(Credentials const& credentials, Custody& base, RefPtr* out_parent, int options, int symlink_recursion_level) const diff --git a/Kernel/FileSystem/VirtualFileSystem.cpp b/Kernel/FileSystem/VirtualFileSystem.cpp index 0bbbde1c3d2..e586d8ba63d 100644 --- a/Kernel/FileSystem/VirtualFileSystem.cpp +++ b/Kernel/FileSystem/VirtualFileSystem.cpp @@ -262,7 +262,7 @@ void VirtualFileSystem::sync_filesystems() for (auto& fs : file_systems) { auto result = fs->flush_writes(); if (result.is_error()) { - //TODO: Figure out how to propagate error to a higher function. + // TODO: Figure out how to propagate error to a higher function. } } }