Kernel: Tidy up Ext2FS construction a bit

This commit is contained in:
Andreas Kling 2021-09-06 11:14:25 +02:00
commit 36725228fa
Notes: sideshowbarker 2024-07-18 04:37:32 +09:00
4 changed files with 5 additions and 5 deletions

View file

@ -89,7 +89,7 @@ public:
FileSize64bits = 1 << 1,
};
static NonnullRefPtr<Ext2FS> create(FileDescription&);
static KResultOr<NonnullRefPtr<Ext2FS>> try_create(FileDescription&);
virtual ~Ext2FS() override;
virtual KResult initialize() override;