Kernel/DevFS: Use KString for DevFSLinkInode::m_link

This commit is contained in:
Andreas Kling 2021-07-17 22:11:41 +02:00
commit 0d89cfcd9a
Notes: sideshowbarker 2024-07-18 08:51:25 +09:00
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 {