From 4e6bd19fcde3621c83a8d3d9f12ffe295201915d Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 3 Aug 2023 16:58:49 -0700 Subject: [PATCH] fssystem: fix stupid issue in NodeBuffer move-ctor Code compiles with this constructor deleted, so it wasn't used, but even so... --- .../include/stratosphere/fssystem/fssystem_bucket_tree.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp b/libraries/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp index 3c0756395..5f43ca427 100644 --- a/libraries/libstratosphere/include/stratosphere/fssystem/fssystem_bucket_tree.hpp +++ b/libraries/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; }