mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +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:
parent
46b93174fc
commit
d30d776ca4
Notes:
sideshowbarker
2024-07-18 06:57:23 +09:00
Author: https://github.com/awesomekling
Commit: d30d776ca4
21 changed files with 61 additions and 58 deletions
|
@ -20,7 +20,7 @@ class TmpFS final : public FileSystem {
|
|||
public:
|
||||
virtual ~TmpFS() override;
|
||||
static RefPtr<TmpFS> create();
|
||||
virtual bool initialize() override;
|
||||
virtual KResult initialize() override;
|
||||
|
||||
virtual StringView class_name() const override { return "TmpFS"sv; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue