diff options
Diffstat (limited to 'Kernel/VM/Region.h')
-rw-r--r-- | Kernel/VM/Region.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/VM/Region.h b/Kernel/VM/Region.h index 104661bfad..1d9ce7f5d3 100644 --- a/Kernel/VM/Region.h +++ b/Kernel/VM/Region.h @@ -131,7 +131,7 @@ public: // NOTE: These are public so we can make<> them. Region(const Range&, const String&, u8 access); Region(const Range&, NonnullRefPtr<VMObject>, size_t offset_in_vmo, const String&, u8 access); - Region(const Range&, RefPtr<Inode>&&, const String&, u8 access); + Region(const Range&, NonnullRefPtr<Inode>, const String&, u8 access); private: Bitmap& ensure_cow_map() const; |