From ed0f3b1b8593f6b76fbb64c53a0885073c1c1979 Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Fri, 19 Dec 2025 11:12:20 -0800 Subject: Fix many of the warnings that show up when compiling with GCC 15.2 --- view/kernelcache/core/MachO.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'view/kernelcache/core/MachO.cpp') diff --git a/view/kernelcache/core/MachO.cpp b/view/kernelcache/core/MachO.cpp index 9eabf086..01b5da74 100644 --- a/view/kernelcache/core/MachO.cpp +++ b/view/kernelcache/core/MachO.cpp @@ -483,9 +483,9 @@ std::vector KernelCacheMachOHeader::ReadSymbolTable(Ref if (nlist.n_strx >= stringInfo.entries) { // TODO: where logger? - LogError( - "Symbol entry at index %llu has a string offset of %u which is outside the strings buffer of size %llu " - "for symbol table %x", + LogErrorF( + "Symbol entry at index {} has a string offset of {} which is outside the strings buffer of size {} " + "for symbol table {:#x}", entryIndex, nlist.n_strx, stringInfo.address, stringInfo.entries); continue; } -- cgit v1.3.1