[Lldb-commits] [lldb] r348805 - Reflow a multi-line string and add a newline

Frederic Riss via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 10 14:30:19 PST 2018


Author: friss
Date: Mon Dec 10 14:30:19 2018
New Revision: 348805

URL: http://llvm.org/viewvc/llvm-project?rev=348805&view=rev
Log:
Reflow a multi-line string and add a newline

Modified:
    lldb/trunk/source/Target/StopInfo.cpp

Modified: lldb/trunk/source/Target/StopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/StopInfo.cpp?rev=348805&r1=348804&r2=348805&view=diff
==============================================================================
--- lldb/trunk/source/Target/StopInfo.cpp (original)
+++ lldb/trunk/source/Target/StopInfo.cpp Mon Dec 10 14:30:19 2018
@@ -367,9 +367,8 @@ protected:
                           "continuing: %s.",
                           m_should_stop ? "true" : "false");
             process->GetTarget().GetDebugger().GetAsyncOutputStream()->Printf(
-                "Warning: hit breakpoint while "
-                "running function, skipping commands and conditions to prevent "
-                "recursion.");
+                "Warning: hit breakpoint while running function, skipping "
+                "commands and conditions to prevent recursion.\n");
             return;
           }
 




More information about the lldb-commits mailing list