From e424223cfb0aaea137b98f233de6fa7384a3901c Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 8 Apr 2025 22:38:13 -0400 Subject: [SharedCache] Fix exception message causing an exception And also removed unneeded VMReader construction in ApplyRegion --- view/sharedcache/core/MappedFileAccessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/sharedcache/core/MappedFileAccessor.h') diff --git a/view/sharedcache/core/MappedFileAccessor.h b/view/sharedcache/core/MappedFileAccessor.h index a63d8506..35d2d5e7 100644 --- a/view/sharedcache/core/MappedFileAccessor.h +++ b/view/sharedcache/core/MappedFileAccessor.h @@ -19,7 +19,7 @@ public: { thread_local std::string message; message = - fmt::format("Tried to access unmapped address {0:x} for file with length of {01:x}", m_address, m_fileLen); + fmt::format("Tried to access unmapped address {0:x} for file with length of {1:x}", m_address, m_fileLen); return message.c_str(); } }; -- cgit v1.3.1