mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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:
@@ -56,9 +56,9 @@ DevFS::~DevFS()
|
||||
{
|
||||
}
|
||||
|
||||
bool DevFS::initialize()
|
||||
KResult DevFS::initialize()
|
||||
{
|
||||
return true;
|
||||
return KSuccess;
|
||||
}
|
||||
|
||||
Inode& DevFS::root_inode()
|
||||
|
||||
Reference in New Issue
Block a user