[Lldb-commits] [lldb] r265818 - Append a missing \n

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 8 10:56:00 PDT 2016


Author: enrico
Date: Fri Apr  8 12:55:59 2016
New Revision: 265818

URL: http://llvm.org/viewvc/llvm-project?rev=265818&view=rev
Log:
Append a missing \n

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

Modified: lldb/trunk/source/Commands/CommandObjectType.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectType.cpp?rev=265818&r1=265817&r2=265818&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectType.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectType.cpp Fri Apr  8 12:55:59 2016
@@ -1438,7 +1438,7 @@ protected:
             result.SetStatus(eReturnStatusSuccessFinishResult);
         else
         {
-            result.GetOutputStream().PutCString("no matching results found.");
+            result.GetOutputStream().PutCString("no matching results found.\n");
             result.SetStatus(eReturnStatusSuccessFinishNoResult);
         }
         return result.Succeeded();




More information about the lldb-commits mailing list