Skip to content

Commit 92e8f22

Browse files
committed
fix hex width
1 parent 5db2a6e commit 92e8f22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/lldb-dap/ProtocolUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ bool IsAssemblySource(const protocol::Source &source) {
106106
}
107107

108108
std::string GetLoadAddressString(const lldb::addr_t addr) {
109-
return "0x" + llvm::utohexstr(addr);
109+
return "0x" + llvm::utohexstr(addr, false, 15);
110110
}
111111

112112
} // namespace lldb_dap

0 commit comments

Comments
 (0)