diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-23 06:53:01 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-23 06:57:00 +0100 |
commit | 8bb18fdc565f4fe133f80e64101fb0d663e27bf2 (patch) | |
tree | 44a16f30690aa7bad64afb79f44ac04d440a256f /Kernel/MemoryManager.h | |
parent | 69a3aecf6b0e5f1d1a52e7adc6ed2b98cb3b0abe (diff) | |
download | serenity-8bb18fdc565f4fe133f80e64101fb0d663e27bf2.zip |
Kernel: Get rid of Unix namespace.
This is no longer needed as the Kernel can stand on its own legs now
and there won't be any conflict with host system data types.
Diffstat (limited to 'Kernel/MemoryManager.h')
-rw-r--r-- | Kernel/MemoryManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/MemoryManager.h b/Kernel/MemoryManager.h index aa2df1ce80..4aa2741064 100644 --- a/Kernel/MemoryManager.h +++ b/Kernel/MemoryManager.h @@ -104,7 +104,7 @@ private: VMObject(PhysicalAddress, size_t); String m_name; bool m_anonymous { false }; - Unix::off_t m_inode_offset { 0 }; + off_t m_inode_offset { 0 }; size_t m_size { 0 }; RetainPtr<Inode> m_inode; Vector<RetainPtr<PhysicalPage>> m_physical_pages; |