1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:38:12 +00:00

Kernel: Tidy up Ext2FS construction a bit

This commit is contained in:
Andreas Kling 2021-09-06 11:14:25 +02:00
parent 47bfbe343b
commit 36725228fa
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;