[lldb] Fix incorrect print of UUID and load address (#152560)
The current display is missing a space, for example: ``` no target │ Locating binary: 24906A83-0182-361B-8B4A-90A249B04FD7at 0x0000000c0d108000 ``` Co-authored-by: Dominic Chen <daming_chen@apple.com>
This commit is contained in:
parent
d7d0d7a80f
commit
92ac1ac904
@ -211,7 +211,7 @@ ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress(
|
||||
if (uuid.IsValid())
|
||||
prog_str << uuid.GetAsString();
|
||||
if (value_is_offset == 0 && value != LLDB_INVALID_ADDRESS) {
|
||||
prog_str << "at 0x";
|
||||
prog_str << " at 0x";
|
||||
prog_str.PutHex64(value);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user