diff options
| author | Sylvestre Ledru <sylvestre@debian.org> | 2014-08-18 14:48:24 +0000 |
|---|---|---|
| committer | Sylvestre Ledru <sylvestre@debian.org> | 2014-08-18 14:48:24 +0000 |
| commit | ca902e81ed79955f30124b5d37243e2075fdf471 (patch) | |
| tree | 708f73b6d152a3af2ce577a91311999f94faf40e | |
| parent | f5469bec971db5da35e09961287469896d662bdc (diff) | |
| download | bcm5719-llvm-ca902e81ed79955f30124b5d37243e2075fdf471.tar.gz bcm5719-llvm-ca902e81ed79955f30124b5d37243e2075fdf471.zip | |
Fix the missleading indentation. Fix CID 1096300
llvm-svn: 215892
| -rw-r--r-- | lldb/source/Commands/CommandObjectSource.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectSource.cpp b/lldb/source/Commands/CommandObjectSource.cpp index 50b2e5a8080..6b1b6aacc85 100644 --- a/lldb/source/Commands/CommandObjectSource.cpp +++ b/lldb/source/Commands/CommandObjectSource.cpp @@ -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; |

