[Lldb-commits] [lldb] r215892 - Fix the missleading indentation. Fix CID 1096300

Sylvestre Ledru sylvestre at debian.org
Mon Aug 18 07:48:25 PDT 2014


Author: sylvestre
Date: Mon Aug 18 09:48:24 2014
New Revision: 215892

URL: http://llvm.org/viewvc/llvm-project?rev=215892&view=rev
Log:
Fix the missleading indentation. Fix CID 1096300

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

Modified: lldb/trunk/source/Commands/CommandObjectSource.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectSource.cpp?rev=215892&r1=215891&r2=215892&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectSource.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectSource.cpp Mon Aug 18 09:48:24 2014
@@ -804,7 +804,7 @@ protected:
                 result.SetStatus (eReturnStatusFailed);
                 return false;
             }
-            
+
             if (num_matches > 1)
             {
                 bool got_multiple = false;
@@ -820,7 +820,7 @@ protected:
                         {
                             if (test_cu_spec != static_cast<FileSpec *> (sc.comp_unit))
                                 got_multiple = true;
-                                break;
+                            break;
                         }
                         else
                             test_cu_spec = sc.comp_unit;
@@ -828,7 +828,7 @@ protected:
                 }
                 if (got_multiple)
                 {
-                    result.AppendErrorWithFormat("Multiple source files found matching: \"%s.\"\n", 
+                    result.AppendErrorWithFormat("Multiple source files found matching: \"%s.\"\n",
                                                  m_options.file_name.c_str());
                     result.SetStatus (eReturnStatusFailed);
                     return false;





More information about the lldb-commits mailing list