projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d0352c
)
Fix the extra space char being emitted in this message when breakpoints resolve -
author
Jason Molenda
<jmolenda@apple.com>
Fri, 28 Sep 2012 01:50:47 +0000
(
01:50
+0000)
committer
Jason Molenda
<jmolenda@apple.com>
Fri, 28 Sep 2012 01:50:47 +0000
(
01:50
+0000)
1 location added to breakpoint 2
llvm-svn: 164810
lldb/tools/driver/Driver.cpp
patch
|
blob
|
history
diff --git
a/lldb/tools/driver/Driver.cpp
b/lldb/tools/driver/Driver.cpp
index
833f289
..
84d464f
100644
(file)
--- a/
lldb/tools/driver/Driver.cpp
+++ b/
lldb/tools/driver/Driver.cpp
@@
-859,7
+859,7
@@
Driver::HandleBreakpointEvent (const SBEvent &event)
SBBreakpoint breakpoint = SBBreakpoint::GetBreakpointFromEvent(event);
int message_len = ::snprintf (message, sizeof(message), "%d location%s added to breakpoint %d\n",
num_new_locations,
- num_new_locations == 1 ? "
" : "s
",
+ num_new_locations == 1 ? "
" : "s
",
breakpoint.GetID());
m_io_channel_ap->OutWrite(message, message_len, ASYNC);
}