diff options
Diffstat (limited to 'lldb/source/Core/Value.cpp')
-rw-r--r-- | lldb/source/Core/Value.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lldb/source/Core/Value.cpp b/lldb/source/Core/Value.cpp index 4e31a7bfe2a..b6b4eb76fdc 100644 --- a/lldb/source/Core/Value.cpp +++ b/lldb/source/Core/Value.cpp @@ -456,14 +456,14 @@ Value::GetValueAsData (ExecutionContext *exe_ctx, if (module) { if (variable) - error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%llx for variable '%s' in %s%s%s", + error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64 " for variable '%s' in %s%s%s", address, variable->GetName().AsCString(""), module->GetFileSpec().GetDirectory().GetCString(), module->GetFileSpec().GetDirectory() ? "/" : "", module->GetFileSpec().GetFilename().GetCString()); else - error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%llx in %s%s%s", + error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64 " in %s%s%s", address, module->GetFileSpec().GetDirectory().GetCString(), module->GetFileSpec().GetDirectory() ? "/" : "", @@ -472,11 +472,11 @@ Value::GetValueAsData (ExecutionContext *exe_ctx, else { if (variable) - error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%llx for variable '%s'", + error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64 " for variable '%s'", address, variable->GetName().AsCString("")); else - error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%llx", address); + error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64, address); } } } @@ -555,7 +555,7 @@ Value::GetValueAsData (ExecutionContext *exe_ctx, const bool prefer_file_cache = false; if (exe_ctx->GetTargetRef().ReadMemory(file_so_addr, prefer_file_cache, dst, byte_size, error) != byte_size) { - error.SetErrorStringWithFormat("read memory from 0x%llx failed", (uint64_t)address); + error.SetErrorStringWithFormat("read memory from 0x%" PRIx64 " failed", (uint64_t)address); } } else @@ -570,14 +570,14 @@ Value::GetValueAsData (ExecutionContext *exe_ctx, { const size_t bytes_read = process->ReadMemory(address, dst, byte_size, error); if (bytes_read != byte_size) - error.SetErrorStringWithFormat("read memory from 0x%llx failed (%u of %u bytes read)", + error.SetErrorStringWithFormat("read memory from 0x%" PRIx64 " failed (%u of %u bytes read)", (uint64_t)address, (uint32_t)bytes_read, (uint32_t)byte_size); } else { - error.SetErrorStringWithFormat("read memory from 0x%llx failed (invalid process)", (uint64_t)address); + error.SetErrorStringWithFormat("read memory from 0x%" PRIx64 " failed (invalid process)", (uint64_t)address); } } } |