summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/FileSystem.h')
-rw-r--r--Kernel/FileSystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/FileSystem.h b/Kernel/FileSystem.h
index 21a64decbb..789117d252 100644
--- a/Kernel/FileSystem.h
+++ b/Kernel/FileSystem.h
@@ -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 {