diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp index 3c075639..5f43ca42 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp @@ -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; }