mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Kernel: Run clang-format on a couple of FileSystem sources
Fixes bad formatting in commit abcf05801a
.
This commit is contained in:
parent
abcf05801a
commit
4fc88aa17b
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/4fc88aa17b Pull-request: https://github.com/SerenityOS/serenity/pull/20766
2 changed files with 1 additions and 2 deletions
|
@ -52,7 +52,6 @@ void Inode::sync()
|
|||
if (result.is_error()) {
|
||||
// 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
|
||||
|
|
|
@ -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.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue