[Lldb-commits] [lldb] r137208 - /lldb/trunk/source/Commands/CommandObjectFrame.cpp

Jason Molenda jmolenda at apple.com
Wed Aug 10 03:51:24 PDT 2011


Author: jmolenda
Date: Wed Aug 10 05:51:24 2011
New Revision: 137208

URL: http://llvm.org/viewvc/llvm-project?rev=137208&view=rev
Log:
Remove extra newline from end of 'frame info' command output.

Modified:
    lldb/trunk/source/Commands/CommandObjectFrame.cpp

Modified: lldb/trunk/source/Commands/CommandObjectFrame.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectFrame.cpp?rev=137208&r1=137207&r2=137208&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectFrame.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectFrame.cpp Wed Aug 10 05:51:24 2011
@@ -73,7 +73,6 @@
         if (exe_ctx.frame)
         {
             exe_ctx.frame->DumpUsingSettingsFormat (&result.GetOutputStream());
-            result.GetOutputStream().EOL();
             result.SetStatus (eReturnStatusSuccessFinishResult);
         }
         else





More information about the lldb-commits mailing list