[Lldb-commits] [lldb] r124008 - /lldb/trunk/source/Breakpoint/BreakpointOptions.cpp

Jim Ingham jingham at apple.com
Fri Jan 21 16:28:04 PST 2011


Author: jingham
Date: Fri Jan 21 18:28:04 2011
New Revision: 124008

URL: http://llvm.org/viewvc/llvm-project?rev=124008&view=rev
Log:
Add missing {} so we don't print the Baton address for the brief breakpoint listing.

Modified:
    lldb/trunk/source/Breakpoint/BreakpointOptions.cpp

Modified: lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointOptions.cpp?rev=124008&r1=124007&r2=124008&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/BreakpointOptions.cpp (original)
+++ lldb/trunk/source/Breakpoint/BreakpointOptions.cpp Fri Jan 21 18:28:04 2011
@@ -312,8 +312,10 @@
     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())
     {





More information about the lldb-commits mailing list