From 729bec5f895381657d5ef5fbed0c70daac16018a Mon Sep 17 00:00:00 2001 From: kat Date: Mon, 28 Jul 2025 10:15:34 -0400 Subject: SharedCache: Fix a compile error w/ GCC --- view/sharedcache/core/SlideInfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view/sharedcache/core/SlideInfo.cpp') diff --git a/view/sharedcache/core/SlideInfo.cpp b/view/sharedcache/core/SlideInfo.cpp index d1352ff7..bb265cde 100644 --- a/view/sharedcache/core/SlideInfo.cpp +++ b/view/sharedcache/core/SlideInfo.cpp @@ -223,7 +223,8 @@ std::vector SlideInfoProcessor::ReadEntryInfo(const MappedFile mappings.emplace_back(map); m_logger->LogDebugF("File: {:?}", entry.GetFilePath().c_str()); m_logger->LogDebugF("Slide Info Address: {:#x}", map.address); - m_logger->LogDebugF("Mapping Address: {:#x}", map.mappingInfo.address); + uint64_t mappingAddress = map.mappingInfo.address; + m_logger->LogDebugF("Mapping Address: {:#x}", mappingAddress); m_logger->LogDebugF("Slide Info Version: {}", map.slideInfoVersion); } -- cgit v1.3.1