fssystem: fix stupid issue in NodeBuffer move-ctor

Code compiles with this constructor deleted, so it wasn't used, but even so...
This commit is contained in:
Michael Scire 2023-08-03 16:58:49 -07:00
parent 8b88351cb4
commit 4e6bd19fcd

View file

@ -113,7 +113,7 @@ namespace ams::fssystem {
AMS_ASSERT(m_header == nullptr);
}
NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_allocator) {
NodeBuffer(NodeBuffer &&rhs) : m_allocator(rhs.m_allocator), m_header(rhs.m_header) {
rhs.m_allocator = nullptr;
rhs.m_header = nullptr;
}