summaryrefslogtreecommitdiffstats
path: root/lldb/tools/driver/Driver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/tools/driver/Driver.cpp')
-rw-r--r--lldb/tools/driver/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp
index 833f289d358..84d464f02a4 100644
--- 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);
}
OpenPOWER on IntegriCloud