mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:04:59 +00:00
Kernel: Allow Ext2FS::flush_writes() to return ErrorOr<void>
This commit is contained in:
parent
28cda85f1f
commit
abcf05801a
8 changed files with 26 additions and 12 deletions
|
@ -305,9 +305,10 @@ void BlockBasedFileSystem::flush_writes_impl()
|
|||
});
|
||||
}
|
||||
|
||||
void BlockBasedFileSystem::flush_writes()
|
||||
ErrorOr<void> BlockBasedFileSystem::flush_writes()
|
||||
{
|
||||
flush_writes_impl();
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue