[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:
Dominic Chen 2025-08-07 21:31:48 -07:00 committed by GitHub
parent d7d0d7a80f
commit 92ac1ac904
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}