1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Kernel/DevFS: Use KString for DevFSLinkInode::m_link

This commit is contained in:
Andreas Kling 2021-07-17 22:11:41 +02:00
parent cd4d73e19e
commit 0d89cfcd9a
2 changed files with 10 additions and 6 deletions

View file

@ -104,7 +104,7 @@ protected:
virtual KResultOr<size_t> write_bytes(off_t, size_t, const UserOrKernelBuffer& buffer, FileDescription*) override;
NonnullOwnPtr<KString> m_name;
String m_link;
OwnPtr<KString> m_link;
};
class DevFSDirectoryInode : public DevFSInode {