Skip to content

Commit 92ac1ac

Browse files
ddccDominic Chen
andauthored
[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 <[email protected]>
1 parent d7d0d7a commit 92ac1ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Core/DynamicLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress(
211211
if (uuid.IsValid())
212212
prog_str << uuid.GetAsString();
213213
if (value_is_offset == 0 && value != LLDB_INVALID_ADDRESS) {
214-
prog_str << "at 0x";
214+
prog_str << " at 0x";
215215
prog_str.PutHex64(value);
216216
}
217217

0 commit comments

Comments
 (0)