aboutsummaryrefslogtreecommitdiff
path: root/source/Breakpoint
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-01-22 00:28:04 +0000
committerJim Ingham <jingham@apple.com>2011-01-22 00:28:04 +0000
commita99282d5667a91d216312d23948fc7a4fd994bb7 (patch)
tree560f60004f105ab79c9b8334d6afc6c03a463137 /source/Breakpoint
parent251af6aedbd3a5b6f1a105ab9303f13b53e332ff (diff)
downloadlldb-a99282d5667a91d216312d23948fc7a4fd994bb7.tar.gz
Add missing {} so we don't print the Baton address for the brief breakpoint listing.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@124008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Breakpoint')
-rw-r--r--source/Breakpoint/BreakpointOptions.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/Breakpoint/BreakpointOptions.cpp b/source/Breakpoint/BreakpointOptions.cpp
index f87e84686..eb7c2c485 100644
--- a/source/Breakpoint/BreakpointOptions.cpp
+++ b/source/Breakpoint/BreakpointOptions.cpp
@@ -312,8 +312,10 @@ BreakpointOptions::GetDescription (Stream *s, lldb::DescriptionLevel level) cons
if (m_callback_baton_sp.get())
{
if (level != eDescriptionLevelBrief)
+ {
s->EOL();
- m_callback_baton_sp->GetDescription (s, level);
+ m_callback_baton_sp->GetDescription (s, level);
+ }
}
if (m_condition_ap.get())
{