diff options
| author | kat <kat@vector35.com> | 2025-07-28 10:15:34 -0400 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2025-07-28 10:15:34 -0400 |
| commit | 729bec5f895381657d5ef5fbed0c70daac16018a (patch) | |
| tree | 05e65dac2f679e03f6f6e6dbf00e77d9ae017372 /view/sharedcache/core/SlideInfo.cpp | |
| parent | ecfc947a39aa8be76b5f378c77b845622bca8b5f (diff) | |
SharedCache: Fix a compile error w/ GCC
Diffstat (limited to 'view/sharedcache/core/SlideInfo.cpp')
| -rw-r--r-- | view/sharedcache/core/SlideInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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<SlideMappingInfo> 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); } |
