mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:17:35 +00:00
Kernel: Convert Mount::absolute_path to ErrorOr<NonnullOwnPtr<KString>>
This commit is contained in:
parent
6be2a51b10
commit
4e7d307166
3 changed files with 10 additions and 5 deletions
|
@ -26,7 +26,7 @@ public:
|
|||
FileSystem const& guest_fs() const { return *m_guest_fs; }
|
||||
FileSystem& guest_fs() { return *m_guest_fs; }
|
||||
|
||||
String absolute_path() const;
|
||||
ErrorOr<NonnullOwnPtr<KString>> absolute_path() const;
|
||||
|
||||
int flags() const { return m_flags; }
|
||||
void set_flags(int flags) { m_flags = flags; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue