mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:38:10 +00:00
Kernel: Make Inode::flush_metadata() return a KResult
Even if this goes nowhere yet, we have to start building an error propagation path somewhere.
This commit is contained in:
parent
6337d742bb
commit
6f69d5204f
18 changed files with 28 additions and 20 deletions
|
@ -70,8 +70,9 @@ ProcFSInode::~ProcFSInode()
|
|||
{
|
||||
}
|
||||
|
||||
void ProcFSInode::flush_metadata()
|
||||
KResult ProcFSInode::flush_metadata()
|
||||
{
|
||||
return KSuccess;
|
||||
}
|
||||
|
||||
KResult ProcFSInode::add_child(Inode&, const StringView&, mode_t)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue