@@ -302,9 +302,9 @@ LLDBMemoryReader::resolveRemoteAddress(uint64_t address) const {
302
302
// If the address is larger than anything we have mapped the address is out
303
303
if (pair_iterator == m_range_module_map.end ()) {
304
304
LLDB_LOG (log,
305
- " [MemoryReader] Address {1 :x} is larger than the upper bound "
306
- " address of the mapped in modules" ,
307
- address);
305
+ " [MemoryReader] Address {:x} is larger than the upper bound "
306
+ " address of the mapped in modules" ,
307
+ address);
308
308
return {};
309
309
}
310
310
@@ -319,8 +319,8 @@ LLDBMemoryReader::resolveRemoteAddress(uint64_t address) const {
319
319
file_address = address - std::prev (pair_iterator)->first ;
320
320
321
321
LLDB_LOGV (log,
322
- " [MemoryReader] Successfully resolved mapped address {1 :x} "
323
- " into file address {1 :x}" ,
322
+ " [MemoryReader] Successfully resolved mapped address {:x} into "
323
+ " file address {:x}" ,
324
324
address, file_address);
325
325
auto *object_file = module ->GetObjectFile ();
326
326
if (!object_file)
@@ -329,16 +329,16 @@ LLDBMemoryReader::resolveRemoteAddress(uint64_t address) const {
329
329
Address resolved (file_address, object_file->GetSectionList ());
330
330
if (!resolved.IsValid ()) {
331
331
LLDB_LOG (log,
332
- " [MemoryReader] Could not make a real address out of file "
333
- " address {1 :x} and object file {}" ,
332
+ " [MemoryReader] Could not make a real address out of file address "
333
+ " { :x} and object file {}" ,
334
334
file_address, object_file->GetFileSpec ().GetFilename ());
335
335
return {};
336
336
}
337
337
338
338
LLDB_LOGV (log,
339
- " [MemoryReader] Successfully resolved mapped address {1 :x} "
340
- " into file address {1 :x}" ,
341
- address, resolved);
339
+ " [MemoryReader] Successfully resolved mapped address {:x} into "
340
+ " file address {:x}" ,
341
+ address, resolved. GetFileAddress () );
342
342
return resolved;
343
343
}
344
344
0 commit comments