mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 10:42:51 +00:00
Kernel: Use KResult in unlink() and rmdir().
This commit is contained in:
parent
ce53b6fd0f
commit
5b27f11b97
Notes:
sideshowbarker
2024-07-19 15:36:48 +09:00
Author: https://github.com/awesomekling
Commit: 5b27f11b97
11 changed files with 54 additions and 92 deletions
|
@ -290,12 +290,10 @@ bool SynthFSInode::add_child(InodeIdentifier child_id, const String& name, byte
|
|||
return false;
|
||||
}
|
||||
|
||||
bool SynthFSInode::remove_child(const String& name, int& error)
|
||||
KResult SynthFSInode::remove_child(const String& name)
|
||||
{
|
||||
(void) name;
|
||||
(void) error;
|
||||
(void)name;
|
||||
ASSERT_NOT_REACHED();
|
||||
return false;
|
||||
}
|
||||
|
||||
SynthFSInodeCustomData::~SynthFSInodeCustomData()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue