1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

VFS: Rename FS::id() to fsid() for consistency.

This commit is contained in:
Andreas Kling 2019-01-23 05:38:54 +01:00
parent a1b4f719ba
commit 730c14e647
3 changed files with 14 additions and 14 deletions

View file

@ -25,7 +25,7 @@ public:
static void initialize_globals();
virtual ~FS();
dword id() const { return m_fsid; }
unsigned fsid() const { return m_fsid; }
static FS* from_fsid(dword);
static void sync();
@ -53,7 +53,7 @@ protected:
FS();
private:
dword m_fsid { 0 };
unsigned m_fsid { 0 };
bool m_readonly { false };
};
@ -132,7 +132,7 @@ inline bool InodeIdentifier::is_root_inode() const
inline unsigned Inode::fsid() const
{
return m_fs.id();
return m_fs.fsid();
}
namespace AK {