mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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:
@@ -145,8 +145,9 @@ KResultOr<NonnullRefPtr<Inode>> DevPtsFSInode::lookup(StringView name)
|
||||
});
|
||||
}
|
||||
|
||||
void DevPtsFSInode::flush_metadata()
|
||||
KResult DevPtsFSInode::flush_metadata()
|
||||
{
|
||||
return KSuccess;
|
||||
}
|
||||
|
||||
KResult DevPtsFSInode::add_child(Inode&, const StringView&, mode_t)
|
||||
|
||||
Reference in New Issue
Block a user