Fix log statement in r346093

Thanks to Dávid Bolvanský for pointing that out.

llvm-svn: 346094
This commit is contained in:
Pavel Labath 2018-11-04 12:54:29 +00:00
parent be828518c9
commit b075bbd9da
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ NativeProcessProtocol::EnableSoftwareBreakpoint(lldb::addr_t addr,
addr);
}
LLDB_LOG(log, "addr = {0:x}: SUCCESS");
LLDB_LOG(log, "addr = {0:x}: SUCCESS", addr);
return SoftwareBreakpoint{1, saved_opcode_bytes, *expected_trap};
}