From a56309680c51d5865bc9a31399bb1e2e5c2de270 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 16 Apr 2020 18:00:42 -0700 Subject: [PATCH] kern: amend syntax --- libmesosphere/source/kern_k_memory_block_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmesosphere/source/kern_k_memory_block_manager.cpp b/libmesosphere/source/kern_k_memory_block_manager.cpp index 1f818e94..ed8917cb 100644 --- a/libmesosphere/source/kern_k_memory_block_manager.cpp +++ b/libmesosphere/source/kern_k_memory_block_manager.cpp @@ -275,7 +275,7 @@ namespace ams::kern { } /* Call the locked update function. */ - std::addressof(*it)->*lock_func(perm); + (std::addressof(*it)->*lock_func)(perm); cur_address += cur_info.GetSize(); remaining_pages -= cur_info.GetNumPages(); it++;