1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

Kernel: Run clang-format on a couple of FileSystem sources

Fixes bad formatting in commit abcf05801a.
This commit is contained in:
Timothy Flynn 2023-08-25 08:30:04 -04:00 committed by Tim Flynn
parent abcf05801a
commit 4fc88aa17b
2 changed files with 1 additions and 2 deletions

View file

@ -52,7 +52,6 @@ void Inode::sync()
if (result.is_error()) { 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.
} }
} }
ErrorOr<NonnullRefPtr<Custody>> Inode::resolve_as_link(Credentials const& credentials, Custody& base, RefPtr<Custody>* out_parent, int options, int symlink_recursion_level) const ErrorOr<NonnullRefPtr<Custody>> Inode::resolve_as_link(Credentials const& credentials, Custody& base, RefPtr<Custody>* out_parent, int options, int symlink_recursion_level) const

View file

@ -262,7 +262,7 @@ void VirtualFileSystem::sync_filesystems()
for (auto& fs : file_systems) { for (auto& fs : file_systems) {
auto result = fs->flush_writes(); auto result = fs->flush_writes();
if (result.is_error()) { 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.
} }
} }
} }