mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
Kernel: Make FileSystem::initialize() return KResult
This forced me to also come up with error codes for a bunch of situations where we'd previously just panic the kernel.
This commit is contained in:
@@ -75,9 +75,9 @@ SysFS::~SysFS()
|
||||
{
|
||||
}
|
||||
|
||||
bool SysFS::initialize()
|
||||
KResult SysFS::initialize()
|
||||
{
|
||||
return true;
|
||||
return KSuccess;
|
||||
}
|
||||
|
||||
Inode& SysFS::root_inode()
|
||||
|
||||
Reference in New Issue
Block a user