From b74c500aa9e5e7949ca46f42e0dc62e02136e259 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 14 Apr 2025 01:53:06 -0400 Subject: [SharedCache] Misc cleanup - Make `SharedCache::m_entries` a simple std::vector we never lookup based off the entry ID - Remove some old comments - Rename some old variables so that they are accurate - Fix compiler warnings - Remove some unneeded copying --- view/sharedcache/core/MachO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/sharedcache/core/MachO.cpp') diff --git a/view/sharedcache/core/MachO.cpp b/view/sharedcache/core/MachO.cpp index 68081710..49953911 100644 --- a/view/sharedcache/core/MachO.cpp +++ b/view/sharedcache/core/MachO.cpp @@ -490,7 +490,7 @@ std::vector SharedCacheMachOHeader::ReadSymbolTable(VirtualMemory& { // TODO: where logger? LogError( - "Symbol entry at index %llu has a string offset of %u which is outside the strings buffer of size %u " + "Symbol entry at index %llu has a string offset of %u which is outside the strings buffer of size %llu " "for symbol table %x", entryIndex, nlist.n_strx, stringInfo.address, stringInfo.entries); continue; -- cgit v1.3.1