diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-05-18 21:46:02 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-19 11:07:35 +0200 |
commit | 9cbdd5f01e32ce4dfcb7303be535a5cd0f7d1e10 (patch) | |
tree | 0cb0f1d8752b3098132427882ccedda95b52efde /Kernel/FileSystem/Inode.h | |
parent | 3b11e471bd5e796edd7311bed17c4ca14afc89a3 (diff) | |
download | serenity-9cbdd5f01e32ce4dfcb7303be535a5cd0f7d1e10.zip |
Kernel: Inline Inode::fsid()
Diffstat (limited to 'Kernel/FileSystem/Inode.h')
-rw-r--r-- | Kernel/FileSystem/Inode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/Inode.h b/Kernel/FileSystem/Inode.h index d19637a6b0..36c2a34995 100644 --- a/Kernel/FileSystem/Inode.h +++ b/Kernel/FileSystem/Inode.h @@ -54,7 +54,7 @@ public: FS& fs() { return m_fs; } const FS& fs() const { return m_fs; } - unsigned fsid() const; + unsigned fsid() const { return m_fs.fsid(); } unsigned index() const { return m_index; } size_t size() const { return metadata().size; } |